Skip to content

Instantly share code, notes, and snippets.

@alfredlucero
Created September 24, 2019 20:10
Show Gist options
  • Save alfredlucero/c86a4e599eee31b6f729df2841060c1f to your computer and use it in GitHub Desktop.
Save alfredlucero/c86a4e599eee31b6f729df2841060c1f to your computer and use it in GitHub Desktop.
wdio.staging.conf.js - STUI to Webdriver SG Blog
const merge = require("deepmerge");
const wdioConf = require("./wdio.conf.js");
exports.config = merge(wdioConf.config, {
services: ["selenium-standalone"],
// Staging specific environment variables and settings
user: "staging_user",
password: "staging_user_password",
envValue: "staging",
baseUrl: "https://staging.app.com"
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment