Revision fd74a12d3cb60c90d55d5cbab4400250fe9b54ed authored by Andreas Tolfsen on 31 March 2016, 13:46:13 UTC, committed by Andreas Tolfsen on 31 March 2016, 13:46:13 UTC
Adds pytest to tools/localpaths.py.
1 parent e64ef88
Raw File
webdriver.cfg
# to add more browsers specify a [section header] with the name
# the 'browser' is currently required
# url and capabilities are optional
# url is the 'command_executor' argument passed in to the 'browser' class
# capabilities is the 'desired_capabilities' argument.

[firefox]
capabilities: {"browserName": "firefox"}
mode: compatibility

[selendroid]
capabilities: {"platform": "ANDROID", "browserName": "android"}
mode: compatibility

[chrome]
url: http://localhost:9515
capabilities: {"browserName": "chrome"}
mode: compatibility

[ie]
capabilities: {"browserName": "ie"}
mode: compatibility

[edge]
capabilities: {"browserName": "edge"}
mode: compatibility

[ios-driver]
capabilities: {"browserName": "iphone"}
mode: compatibility

[blackberry]
url: http://169.254.0.1:1338
capabilities: {"browserName": "blackberry"}
mode: compatibility
back to top