Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've heard of soda, but it seems like it requires you to signup and there's a limit on the # of minutes ( free acct / 200 minutes ).

Does anyone know if there's some alternative way to control a browser, or more specifically invoke JS on a web page?

share|improve this question
1  
that's for taking videos cross-platform. You can use soda on your machine – Alfred May 2 '11 at 21:15
How would you connect it to localhost:4444 which would be my Selenium browser instance? – meder May 2 '11 at 21:22
@Alfred - ahhh, github.com/LearnBoost/soda/raw/master/examples/google.js thanks.. could you post that as the answer? – meder May 2 '11 at 21:27

3 Answers

up vote 3 down vote accepted

https://github.com/LearnBoost/soda/raw/master/examples/google.js

/**
 * Module dependencies.
 */

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

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

browser.on('command', function(cmd, args){
  console.log(' \x1b[33m%s\x1b[0m: %s', cmd, args.join(', '));
});

browser
  .chain
  .session()
  .open('/')
  .type('q', 'Hello World')
  .clickAndWait('btnG')
  .getTitle(function(title){
    assert.ok(~title.indexOf('Hello World'), 'Title did not include the query');
  })
  .clickAndWait('link=Advanced search')
  .waitForPageToLoad(2000)
  .assertText('css=#gen-query', 'Hello World')
  .assertAttribute('as_q@value', 'Hello World')
  .testComplete()
  .end(function(err){
    if (err) throw err;
    console.log('done');
  });
share|improve this answer
1  
very good. I also like yeti to test my javascript – Alfred May 3 '11 at 21:56

Zombie.js might work for you. It is headless and seems really cool.

share|improve this answer
I dont get this headless thing. Even if it works in Zombie's browser it doesn't guarantee that it'll work on FF, IE, Chrome, Safari and Opera. – ajsie May 17 '11 at 23:14
1  
You could run the tests that check for functionality and then verify rendering with something else. I use zombie.js to speed up the verification, but not to replace it completely. – mcotton May 19 '11 at 2:20
@mcotton how do you verify rendering? do you mean comparing the html output on zombie.js with the output on an actual browser? – Kim Jong Woo Mar 26 '12 at 19:12

wd is "A node.js javascript client for webdriver/selenium 2"

share|improve this answer
Any good place to find tutorial? I cannot run a single wd example because title variable is undefined error – HP. Feb 22 at 21:51
I have since changed from selenium to testacular, and could not be happier – jonperl Mar 11 at 3:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.