Bug fix: maxSession in appium config should be 1

This commit is contained in:
Zhaopeng XUAN 2021-01-13 12:39:36 +01:00
parent 76617374c0
commit 8dc87a3a3c

View file

@ -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,