#!/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;