docker-compose run --rm site1 -e localchrome -t ./tests/basic_search.js
nightwatch -e chrome -t ./tests/basic_search.js
nightwatch -t ./tests/basic_search.js{ "src_folders" : ["./tests"], "output_folder" : "./reports", "page_objects_path" : "./pages", "custom_assertions_path": "./assertions", "globals_path" : "", "live_output" : false, "parallel_process_delay" : 10, "disable_colors": false, "test_workers" : false,
"test_settings" : { "default" : { "launch_url" : "https://www.site1.com", "selenium_host" : "ondemand.saucelabs.com", "selenium_port" : 80, "username" : "${USERNAME}", "access_key" : "${ACCESS_KEY}", "silent" : true, "disable_colors": false, "screenshots" : { "enabled" : true, "path" : "" }, "desiredCapabilities" : { "browserName" : "chrome", "platform" : "Windows 10", "version" : "53.0", "deviceName" : "", "javascriptEnabled" : true, "acceptSslCerts" : true, "avoidProxy" : true, "screenResolution" : "1280x1024" } },
"chrome" : { "use_ssl" : false, "silent" : true, "output" : true, "screenshots" : { "enabled" : true, "on_failure" : true, "path" : "screens/chrome" }, "desiredCapabilities": { "name" : "", "browserName": "", "platform": "" }, "selenium" : { "start_process" : false } },
"localchrome" : { "screenshots": { "enabled": true, "on_failure": true, "path": "screens/chrome" }, "selenium_host" : "chromedriver", "selenium_port" : 4444 }
}}version: '2'
services: chromedriver: image: selenium/standalone-chrome volumes: - /dev/shm:/dev/shm site1: build: context: ./ depends_on: - chromedriver environment: - WAIT_FOR_HOSTS=chromedriver:4444 volumes: - ./projects/site1:/home/node site2: build: context: ./ depends_on: - chromedriver environment: - WAIT_FOR_HOSTS=chromedriver:4444 volumes: - ./projects/site2:/home/node site3: build: context: ./ depends_on: - chromedriver environment: - WAIT_FOR_HOSTS=chromedriver:4444 volumes: - ./projects/site3:/home/node
To view this discussion on the web visit https://groups.google.com/d/msgid/nightwatchjs/f9360a51-42b2-4cf5-9ada-7e888de6b5e1%40googlegroups.com.--
You received this message because you are subscribed to a topic in the Google Groups "NightwatchJs" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/nightwatchjs/HzgELssKGkQ/unsubscribe.
To unsubscribe from this group and all its topics, send an email to nightwatchjs+unsubscribe@googlegroups.com.
To post to this group, send email to nightw...@googlegroups.com.