New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

burnout

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

burnout

Burnout is a asynchronous, chainable Selenium 2 WebDriver interface.

latest
Source
npmnpm
Version
0.0.2
Version published
Maintainers
1
Created
Source

Burnout

Burnout is an asynchronous, chainable and DRY interface for building Selenium 2 WebDriver scripts in Node. It was written primarily for interfacing with Sauce Labs, but it should work with most Selenium 2 setups. Burnout builds on top of the excellent Selenium 2 WebDriver library wd.

Installing

npm install burnout

Using

Burnout's API strives to map as closely as possible to the interface exposed by wd, which in turn maps closely to the Selenium JSON Wire Protocol.

An example test:

var burnout = require('burnout'),
    assert = require('assert'); // Your assertion utility of choice here

burnout
    .initialize({ 
        name: "CloudFlare - Rocket Loader Optimization" // Test name
    })
    // Callbacks are optional..
    .get("http://www.google.com/")
    // Commands can be chained..
    .eval("document.title", function(title) {

        // Failed assertions will stop the test on a per-browser basis..
        assert(title == 'Google');
    })
    // Chained commands are guaranteed to run synchronously..
    .elementByCss("#NextPageLink", function(link) {

        // The context of callbacks can be used to promise sub-commands..
        return this.moveTo(link, 2, 2, function() {

            return this.click(link)
        });
    })
    // End the test. Status automatically posted to Sauce Labs.
    .quit();

API

These are the methods currently exposed by Burnout:

var seleniumMethods = [
    'init',
    'get',
    'eval',
    'element',
    'elementById',
    'elementByName',
    'elementByCss',
    'getAttribute',
    'execute',
    'executeAsync',
    'click',
    'doubleClick',
    'close',
    'setImplicitWaitTimeout',
    'setAsyncScriptTimeout',
    'moveTo',
    'scroll',
    'text',
    'buttonDown',
    'buttonUp',
    'active',
    'keyToggle'
];

Browsers

Burnout uses a hardcoded selection of browsers when running tests. Exclusions to this selection are currently supported, but not additions. This will change as I get a feel for how people are using the library, but for my immediate purposes I wanted tests to be inclusive by default.

These are the browsers that Burnout tests by default:

var seleniumBrowsers = [
    {
        browserName: "googlechrome"
    },
    {
        browserName: "firefox",
        version: "11",
        platform: "XP"
    },
    {
        browserName: "firefox",
        version: "3.6",
        platform: "XP"
    },
    {
        browserName: "iexplore",
        version: "6",
        platform: "XP"
    },
    {
        browserName: "iexplore",
        version: "7",
        platform: "XP"
    },
    {
        browserName: "iexplore",
        version: "8",
        platform: "XP"
    },
    {
        browserName: "iexplore",
        version: "9"
    },
    {
        browserName: "opera",
        version: "11",
        platform: "LINUX"
    }
];

If you want to exclude specific browsers from you test, you can specify them when you initialize Burnout:

burnout
    .initialize({
        name: "Foo test.",
        exclude: [
            "iexplore 6",
            "firefox 3.6"
        ]
    })
    // etc..

If you just want to sanity check your code, you can set an environment variable when running your tests:

# If $ENV is set to test, only Google Chrome will be tested
ENV=test node ./path/to/selenium-suite.js

Alternatively, you can set 'debug' to true when initializing Burnout:

burnout
    .initialize({ 
        name: "Foo test.", 
        debug: true 
    })
    // etc..

Sauce Labs

Burnout accepts Sauce Labs account information as environment variables:

SAUCE_USER=foo SAUCE_KEY=123-456-789 node ./path/to/selenium-suite.js

Or as options in the call to initialize:

burnout
    .initialize({
        name: "Foo test.",
        sauceUser: "foo",
        sauceKey: "123-456-789"
    })
    // etc..

Non-Sauce Labs Environments

Burnout also accepts a custom hostname and port for your local environment:

burnout
    .initialize({
        name: "Foo test.",
        remoteHost: "ondemand.saucelabs.com",
        remotePort: 80
    })
    // etc..

FAQs

Package last updated on 15 May 2012

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts