szabgab has asked for the wisdom of the Perl Monks concerning the following question:
use Test::More tests => 1; use Test::WWW::Selenium; # Parameters are passed through to WWW::Selenium my $sel = Test::WWW::Selenium->new( host => "localhost", port => 4444, browser => "*firefox", browser_url => "http://www.google. +com", default_names => 1, ); # use special test wrappers around WWW::Selenium commands: $sel->open_ok("http://www.google.com");
When I run the test script it is stuck and in the browser (Firefox) I can see it was trying to access
and got 404.http://www.google.com/selenium-server/core/RemoteRunner.html?sessionId +=718835&multiWindow=false&baseUrl=http%3A%2F%2Fwww.google.com&debugMo +de=false
So what am I doing wrong?
browser => "*custom /usr/bin/firefox",
browser => "*chrome /usr/lib/firefox/firefox-bin",
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Selenium example not working?
by Anonymous Monk on Mar 30, 2008 at 11:47 UTC | |
by jdporter (Paladin) on Aug 27, 2009 at 17:27 UTC | |
|
Re: Selenium example not working?
by dragonchild (Archbishop) on Mar 30, 2008 at 11:06 UTC | |
by szabgab (Priest) on Mar 30, 2008 at 13:35 UTC |