File tree Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Original file line number Diff line number Diff line change
1
+ # This file contains a list of capabilities which will be used to instantiate
2
+ # the remote selenium webdrivers.
3
+ # Each list entry will cause the entire test suite to be run for a remote
4
+ # webdriver with the capabilities specified in the entry.
5
+
6
+ # See here for more on test configuration:
7
+ # https://docs.saucelabs.com/reference/test-configuration
8
+
9
+ - browserName : " firefox"
10
+ version : 42
11
+ public : " public restricted"
12
+ seleniumVersion : " 2.48.0"
13
+ maxDuration : 10800
Original file line number Diff line number Diff line change @@ -53,7 +53,8 @@ def jsondump(data):
53
53
CHROME_EXT_MAX_CHROME_VERSION = 41
54
54
55
55
# Path to YAML file specifying capability list
56
- DEFAULT_CAPABILITIES_FILE_PATH = _rel_path ('capabilities.yaml' )
56
+ DEFAULT_CAPABILITIES_FILE = os .getenv ('CAPABILITIES' , 'capabilities.yaml' )
57
+ DEFAULT_CAPABILITIES_FILE_PATH = _rel_path (DEFAULT_CAPABILITIES_FILE )
57
58
58
59
# Files used for testing
59
60
TEST_DATA_DIR = _rel_path ('..' , 'test_data' )
You can’t perform that action at this time.
0 commit comments