Created
September 24, 2019 20:18
-
-
Save alfredlucero/a18f1f7f3b2c8b97acf1e6a153a59f0f to your computer and use it in GitHub Desktop.
wdio.cicd.staging.conf.js - STUI to Webdriver SG Blog
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const merge = require("deepmerge"); | |
const wdioConf = require("./wdio.conf.js"); | |
exports.config = merge(wdioConf.config, { | |
user: "staging_user", | |
password: "staging_user_password", | |
envValue: "staging", | |
// Selenium Hub in Docker setup | |
host: "selenium-hub", // Needs to match service name in docker-compose | |
port: 4444, | |
path: "/wd/hub", | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment