| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- {
- "src_folders" : ["./examples/tests"],
- "output_folder" : "./examples/reports",
- "custom_commands_path" : "./examples/custom-commands",
- "page_objects_path" : "./examples/pages",
- "custom_assertions_path" : "",
- "globals_path" : "",
- "live_output" : false,
- "parallel_process_delay" : 10,
- "disable_colors": false,
- "test_workers" : false,
- "selenium" : {
- "start_process" : false,
- "server_path" : "",
- "log_path" : "",
- "host" : "127.0.0.1",
- "port" : 4444,
- "cli_args" : {
- "webdriver.chrome.driver" : "",
- "webdriver.ie.driver" : "",
- "webdriver.firefox.profile" : ""
- }
- },
- "test_settings" : {
- "default" : {
- "launch_url" : "http://localhost",
- "selenium_host" : "127.0.0.1",
- "selenium_port" : 4444,
- "silent" : true,
- "disable_colors": false,
- "screenshots" : {
- "enabled" : false,
- "path" : ""
- },
- "desiredCapabilities" : {
- "browserName" : "firefox",
- "javascriptEnabled" : true,
- "acceptSslCerts" : true
- }
- },
- "saucelabs" : {
- "selenium_host" : "ondemand.saucelabs.com",
- "selenium_port" : 80,
- "username" : "${SAUCE_USERNAME}",
- "access_key" : "${SAUCE_ACCESS_KEY}",
- "use_ssl" : false,
- "silent" : true,
- "output" : true,
- "screenshots" : {
- "enabled" : false,
- "on_failure" : true,
- "path" : ""
- },
- "desiredCapabilities": {
- "name" : "test-example",
- "browserName": "firefox"
- },
- "globals" : {
- "myGlobal" : "some_sauce_global"
- },
- "selenium" : {
- "start_process" : false
- }
- },
- "phantomjs" : {
- "desiredCapabilities" : {
- "browserName" : "phantomjs",
- "javascriptEnabled" : true,
- "acceptSslCerts" : true,
- "phantomjs.binary.path" : "/path/to/phantomjs"
- }
- },
- "browserstack" : {
- "selenium" : {
- "start_process" : false
- },
- "selenium_host" : "hub.browserstack.com",
- "selenium_port" : 80,
- "silent" : true,
- "desiredCapabilities": {
- "name" : "test-example",
- "browserName": "firefox",
- "browserstack.user" : "...",
- "browserstack.key" : "..."
- }
- },
-
- "testingbot" : {
- "selenium_host" : "hub.testingbot.com",
- "selenium_port" : 80,
- "apiKey" : "${TB_KEY}",
- "apiSecret" : "${TB_SECRET}",
- "silent" : true,
- "output" : true,
- "screenshots" : {
- "enabled" : false,
- "on_failure" : true,
- "path" : ""
- },
- "desiredCapabilities": {
- "name" : "test-example",
- "browserName": "firefox"
- },
- "selenium" : {
- "start_process" : false
- }
- }
- }
- }
|