Merge pull request #277 from iqalab-cloud/bug-fix-incorrect-max-session
Bug fix: maxSession in appium config should be 1
This commit is contained in:
commit
d0e3c619ca
|
@ -191,7 +191,7 @@ def create_node_config(avd_name: str, browser_name: str, appium_host: str, appiu
|
|||
'url': 'http://{host}:{port}/wd/hub'.format(host=appium_host, port=appium_port),
|
||||
'host': appium_host,
|
||||
'port': appium_port,
|
||||
'maxSession': 6,
|
||||
'maxSession': 1,
|
||||
'register': True,
|
||||
'registerCycle': 5000,
|
||||
'hubHost': selenium_host,
|
||||
|
|
Loading…
Reference in a new issue