![Maintenance Status][maintenance-image]
A small, rambunctious configuration wrapper for WD.js or WebdriverIO
Main features:
- Easy configuration for local, Sauce Labs, BrowserStack testing.
- Invokes selenium server for local runs automagically.
- Integration helpers for Mocha tests.
- Auto-magic setting of Sauce Labs test status.
- Use your own test framework and test runner.
First, install the library.
$ npm install --save-dev rowdy
If you want to have Rowdy run and control a local Selenium server, then install the standalone client and run the install scripts:
$ npm install --save-dev selenium-standalone
$ npm run install-selenium
This shells out to selenium-standalone
and is necessary at some point in your
integration if using the standalone (local) server.
The above steps are necessary if the configuration value
settings.local.server.start
is true
. You can skip the steps if you are
separately running / managing a local Selenium server or using a remote Selenium
farm (e.g., Sauce Labs or BrowserStack).
Then, install the necessary client libraries.
$ npm install --save-dev wd
$ npm install --save-dev webdriverio saucelabs
Note: If using SauceLabs + WebdriverIO, we lazy require
the Sauce Labs
module to upload results of "done" to your SL account.
Note: Rowdy requires webdriverio
at version v3.0.0
or above.
If you intend to use Sauce Labs + guacamole-provide environments, then:
$ npm install --save-dev guacamole
By default Rowdy will lazy initialize the library's included
config.js configuration file. (The first access of most
rowdy.*
properties / methods will force this.)
However, on first import of Rowdy, you can override this behavior to do things like override parts of the default configuration:
// Start with default configuration.
var config = require("rowdy/config");
config.server.logger = true;
// ... any other mutations
// Pass configuration in.
var rowdy = require("rowdy")(config);
Or, you can simply copy config.js to your project, edit it as appropriate and load:
var config = require("./PATH/TO/config");
var rowdy = require("rowdy")(config);
Start the local Selenium server on a different port:
$ ROWDY_OPTIONS='{ "server": { "port":4321 } }' \
npm run test
Have client hit an already running local Selenium server without starting its own:
# In one terminal
$ java -jar node_modules/selenium-standalone/.selenium/selenium-server/2.45.0-server.jar \
-port 4321 \
-Dphantomjs.binary.path=node_modules/phantomjs/lib/phantom/bin/phantomjs
# In another...
$ ROWDY_OPTIONS='{ "client": { "port":4321 }, "server": { "start":false } }' \
npm run test
We use guacamole to have
automatic access to all of the test environments Sauce Labs supports
(e.g., firefox_38_Windows_2012_R2_Desktop
, safari_7_OS_X_10_9_Desktop
).
If you npm install guacamole
, then by default Rowdy will use and enable
those environments for use in configuration. Once installed, you can view
all of the available environments with:
# View environments
$ node_modules/.bin/guacamole
# Generate a cached shrinkwrap file
$ node_modules/.bin/guacamole --generate-shrinkwrap
Rowdy uses a cached version of Sauce Labs configurations in the
guacamole-shrinkwrap.json
file so that
guacamole
doesn't query the Sauce Labs API at runtime.
Disabling Guacamole: If you don't want to use the guacamole
environments
with Sauce Labs, then you can skip the npm install
and just make sure the
following is active in your Rowdy configuration:
{
options: {
guacamole: {
enabled: false
}
}
}
(By default guacamole.enabled
is true if npm
installed and false otherwise,
so if you use the default Rowdy configuration, no code changes are needed.)
And then you should add your own bespoke Sauce Labs settings in configuration at:
{
settings: {
sauceLabs: {
"mac-safari-7": { /* Sauce Labs capabilities */ }
}
}
}
One of the Rowdy peer dependencies is selenium-standalone
. This package
contains an install script that you may need (and do need on Windows):
$ node_modules/.bin/selenium-standalone install
Some other tips and tricks:
Recent Safari updates have broken automatic driver usage, so you need a series of tedious steps per http://elementalselenium.com/tips/69-safari:
- Download the driver at your current version from
https://github.com/SeleniumHQ/selenium/raw/selenium-VERSION/javascript/safari-driver/prebuilt/SafariDriver.safariextz
. A current version used inselenium-standalone
is2.45.0
, so that would correspond to: github.com/SeleniumHQ/selenium/raw/selenium-2.45.0/javascript/safari-driver/prebuilt/SafariDriver.safariextz - Double click the downloaded driver file. Click "Install" when prompted by Safari.
See https://code.google.com/p/selenium/wiki/InternetExplorerDriver#Required_Configuration for extra steps needed to work with local IE. Anecdotally, for Win7+IE11 in a VM, the only actually tweak needed was:
- Create key
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\MAIN\FeatureControl\FEATURE_BFCACHE
and add DWORD ofiexplore.exe
defaulted to0
value.
TODO: API is still settling out.
We provide full working examples of the Mocha Adapter:
- examples/mocha/wd: Basic Mocha/Chai tests with WD.js
- examples/mocha/webdriverio: The same Mocha/Chai tests with WebdriverIO.
TODO: Add a full guide for configuring the adapter and (1) the options,
(2) adapter.refreshClient()
use, (3) adapter.client
use.
The full API to WD.js is available at: https://github.com/admc/wd/blob/master/doc/api.md
WebdriverIO provides the following useful documentation:
Please see the Contributions Guide for how to help out with the plugin.
We test all changes with [Travis CI][trav]. Here's our current [build status][trav_site]:
[![Build Status][trav_img]][trav_site]
We also do multi-browser testing thanks to donated VM time from [Sauce Labs][sauce] and [BrowserStack][bs]. Here's our Sauce Labs [build matrix][sauce_site]:
[![Sauce Test Status][sauce_img]][sauce_site]
Archived: This project is no longer maintained by Formidable. We are no longer responding to issues or pull requests unless they relate to security concerns. We encourage interested developers to fork this project and make it their own!