in reply to Re^2: Executing selenium scripts automatically on cloud server using Perl
in thread Executing selenium scripts automatically on cloud server using Perl
So on the server machine you start your selenium server: java -jar selenium-server.jar
On the client, you run a perl script like this:
use Test::WWW::Selenium my $sel = Test::WWW::Selenium->new( host => "your server's ip", port => 4444, browser => "*firefox", browser_url => "http://www.google.com", ); # your test script goes here
Maybe you have to tweak the firewall settings on the server to make this work.
|
|---|