4831: Tests pass with "make test", "mocha --watch", and browser at /test.html
[arvados.git] / apps / backstage / test / webdriver-client.js
1 var webdriverjs = require('webdriverjs');
2
3 var client = webdriverjs.remote({
4     desiredCapabilities: {
5         // http://code.google.com/p/selenium/wiki/DesiredCapabilities
6         browserName: 'phantomjs'
7     },
8     // webdriverjs has a lot of output which is generally useless
9     // However, if anything goes wrong, remove this to see more details
10     // logLevel: 'silent'
11 });
12 // client.init();
13
14 module.exports = client;