Skip to content

Instantly share code, notes, and snippets.

@kmgilbert100
Last active November 17, 2015 21:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kmgilbert100/704991d125d08f8d35d9 to your computer and use it in GitHub Desktop.
Save kmgilbert100/704991d125d08f8d35d9 to your computer and use it in GitHub Desktop.
var colors = require('../../lib/screenColors'),
fs = require('fs-extra'),
async = require('async'),
assert = require('assert'),
webdriverIO = require('webdriverio');
function run(cookie) {
console.log(colors.info+"Cookie Used For Login: "+cookie+colors.reset);
var client = webdriverIO.remote({
desiredCapabilities: {
browserName: 'chrome'
}
});
var funcTestHolder = [];
funcTestHolder.push(require('../suites/basic/example')(client, cookie))
}
module.exports.run = run;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment