Skip to content

Instantly share code, notes, and snippets.

@alfredlucero
Created September 24, 2019 20:18
Show Gist options
  • Save alfredlucero/a18f1f7f3b2c8b97acf1e6a153a59f0f to your computer and use it in GitHub Desktop.
Save alfredlucero/a18f1f7f3b2c8b97acf1e6a153a59f0f to your computer and use it in GitHub Desktop.
wdio.cicd.staging.conf.js - STUI to Webdriver SG Blog
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