InfiniteLoop has asked for the wisdom of the Perl Monks concerning the following question:
#!/usr/bin/perl -w use strict; use warnings; use WWW::Selenium; use WWW::Selenium::Launcher::MacDefault; my $selenium = WWW::Selenium->new; $selenium->open( 'http://localhost/selenium/SeleneseRunner.html' ); $selenium->verify_title( 'Some title' ); $selenium->click_and_wait( 'link_id' ); $selenium->stop;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: WWW::Selenium woes
by polettix (Vicar) on Mar 07, 2006 at 17:35 UTC | |
by InfiniteLoop (Hermit) on Mar 07, 2006 at 17:40 UTC |