Skip to content

Instantly share code, notes, and snippets.

@alfredlucero
Created September 24, 2019 17:56
Show Gist options
  • Save alfredlucero/9294f80d7705849247ffc710bd18e116 to your computer and use it in GitHub Desktop.
Save alfredlucero/9294f80d7705849247ffc710bd18e116 to your computer and use it in GitHub Desktop.
wdio.localhost.conf.js - STUI to Webdriver SG blog
const merge = require("deepmerge");
const wdioConf = require("./wdio.conf.js");
exports.config = merge(wdioConf.config, {
// Localhost config file for when you have local web app running
// and pointing to whichever environment
services: ["selenium-standalone"],
baseUrl: "http://127.0.0.1:8000",
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment