• Stars
    star
    466
  • Rank 94,105 (Top 2 %)
  • Language
    JavaScript
  • Created about 14 years ago
  • Updated almost 12 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Selenium Node.JS adapter

Soda

Selenium Node Adapter. A light-weight Selenium RC client for NodeJS, with additional Sauce Labs integration for acceptance testing in the cloud.

Installation

via npm:

$ npm install soda

Authors

Running Examples

The examples provided in ./examples are intended to be run against Selenium RC, which can be downloaded here. Once installed simply execute the following command to start the selenium server:

$ java -jar selenium-server.jar

Then choose an example to run using soda:

$ node examples/google.js

Actions

"Selenese" actions include commands such as open and type. Every action has a corresponding Client method which accept a variable number of arguments followed by a callback Function which receives any potential err, the response body, and response object itself.

browser.session(function(err){
  browser.open('/', function(err, body, res){
    browser.type('q', 'Hello World', function(err, body, res){
      browser.testComplete(function(){
        
      });
    });
  });
});

Because nested callbacks can quickly become overwhelming, Soda has optional chaining support by simply utilizing the .chain getter as shown below. If an exception is thrown in a callback, or a command fails then it will be passed to end(err). The .chain getter should only be used once, activating the chaining api.

browser
  .chain
  .session()
  .open('/')
  .type('q', 'Hello World')
  .end(function(err){
    browser.testComplete(function() {
      console.log('done');
      if(err) throw err;
    });
  });

When chaining successful commands may receive a callback, which is useful for custom assertions:

browser
  .chain
  .session()
  .open('/')
  .getTitle(function(title){
    assert.equal('Hello World', title);
  })
  .end(function(err){
    browser.testComplete(function() {
      console.log('done');
      if(err) throw err;
    });
  })

With the .and() method you can add additional commands to the queue. The callback accepts the client instance, which is also the value of "this".

For example you may want to authenticate a user, note we do not use .chain or .end() again, this simply extends the current queue.

function login(user, pass) {
  return function(browser) {
    browser
      .open('/login')
      .type('username', name)
      .type('password', pass)
      .clickAndWait('login');
  }
}

With this helper function we can now re-use this logic in several places, and express the tests in a more logical manner.

browser
  .chain
  .session()
  .open('/')
  .assertTitle('Something')
  .and(login('foo', 'bar'))
  .assertTitle('Foobar')
  .and(login('someone', 'else'))
  .assertTitle('Someone else')
  .end(function(err){
    browser.testComplete(function() {
      console.log('done');
      if(err) throw err;
    });
  });

Sauce Labs Videos & Logs

When a job is complete, you can request the log or flv video from Sauce Labs. To access the url for these resources you may use SauceClient#videoUrl or SauceClient#logUrl, for example:

...
.end(function(err){
  console.log(this.jobUrl)
  console.log(this.videoUrl)
  console.log(this.logUrl)
})

Sauce Labs also provides a script that you may embed in your CI server to display the video, accessible via SauceClient#video, which will yield something similar to:

<script src="http://saucelabs.com/video-embed/<job-id>.js?username=<username>&access_key=<access-key>"/>

Selenium RC Example

var soda = require('soda')
  , assert = require('assert');

var browser = soda.createClient({
    host: 'localhost'
  , port: 4444
  , url: 'http://www.google.com'
  , browser: 'firefox'
});

browser
  .chain
  .session()
  .open('/')
  .type('q', 'Hello World')
  .clickAndWait('btnG')
  .getTitle(function(title){
    assert.ok(~title.indexOf('Hello World'))
  })
  .end(function(err){
    browser.testComplete(function() {
      console.log('done');
      if(err) throw err;
    });
  });

Sauce Labs Example

var soda = require('soda')
  , assert = require('assert');

var browser = soda.createSauceClient({
    'url': 'http://sirrobertborden.ca.app.learnboost.com/'
  , 'username': '<your username>'
  , 'access-key': '<your api key>'
  , 'os': 'Linux'
  , 'browser': 'firefox'
  , 'browser-version': '3.'
  , 'max-duration': 300 // 5 minutes
});

// Log commands as they are fired
browser.on('command', function(cmd, args){
  console.log(' \x1b[33m%s\x1b[0m: %s', cmd, args.join(', '));
});

browser
  .chain
  .session()
  .setTimeout(8000)
  .open('/')
  .waitForPageToLoad(5000)
  .clickAndWait('//input[@value="Submit"]')
  .clickAndWait('link=Settings')
  .type('user[name][first]', 'TJ')
  .clickAndWait('//input[@value="Save"]')
  .assertTextPresent('Account info updated')
  .clickAndWait('link=Log out')
  .end(function(err){
    browser.setContext('sauce:job-info={"passed": ' + (err === null) + '}', function(){
      browser.testComplete(function(){
        console.log(browser.jobUrl);
        if (err) throw err;
      });
    });
  });  

Creating Helpers

Keep in mind you can extend the prototype as needed for your test. An example of this which we frequently use is waitForDialog(). Since the exports of require('soda') is the Client itself we can extend it as shown below, in our case waiting for an element with the class of ".dialog" to be present.

soda.prototype.waitForDialog = function() {
  return this.waitForElementPresent('css=.dialog');
};

Running The Test Suite

First we need to start Selenium RC:

 $ java -jar selenium-server.jar

Then run:

 $ make test

More Information

License

(The MIT License)

Copyright (c) 2010 LearnBoost <[email protected]>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

More Repositories

1

cluster

Node.JS multi-core server manager with plugins support.
JavaScript
2,292
star
2

up

Zero-downtime reloads and requests load balancer based on distribute.
JavaScript
540
star
3

express-mongoose

Plugin for easy rendering of Mongoose async Query results.
JavaScript
451
star
4

tobi

Tobi: Expressive server-side functional testing with jQuery
JavaScript
411
star
5

websocket.io

JavaScript
329
star
6

console-trace

Adds a handy `trace` flag to the console object to prepend the file and line number.
JavaScript
296
star
7

socket.io-spec

Specification for the Socket.IO Protocol (0.9)
225
star
8

distribute

Distribute is a middleware-based API to expressively perform request routing / load balancing in Node.JS.
JavaScript
219
star
9

nodestream

Realtime apps made easy with templating
JavaScript
219
star
10

superagent-oauth

node-oauth signing plugin for superagent requests
JavaScript
87
star
11

shorty

LearnBoost URL shortening/redirection service.
JavaScript
79
star
12

CSS3-Overlay

A CSS3 Overlay system for modal dialogs.
65
star
13

up-hook

UP middleware to enable seamless zero-downtime HTTP server reloads upon GitHub post-receive webhooks.
JavaScript
51
star
14

jadevu

Minimal precompiled Jade templates exposed to the client.
JavaScript
50
star
15

texty

Canvas text
JavaScript
48
star
16

Socket.IO-node-client

[WIP] Socket.IO 0.7 Node.JS client implementation, with simulated browser transports
JavaScript
43
star
17

drawback

The Drawback framework provides a seamless way to render 2D drawings on the client side using HTML5 technologies with a server-side backend.
JavaScript
38
star
18

stylus

Placeholder repo for keeping Stylus docs in place
34
star
19

connect-timeout

Requests timeout middleware
JavaScript
32
star
20

socket.io-node

32
star
21

cfg.js

Minimal Node.JS configuration interface with support for overrides, environments and inheritance.
JavaScript
30
star
22

cluster-mail

Cluster exceptions in your inbox
JavaScript
26
star
23

superagent-queue

Adds request queueing capabilities to superagent
JavaScript
18
star
24

cluster-log

Advanced logging plugin for cluster
JavaScript
15
star
25

engine.io-flash

1
star