We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Update wait_for_page_to_load snippet to use Selenium::Waiter
Perl's standard sleep() function only supports seconds, so we can't use that to get millisecond delay control. The Time::HiRes module and it's usleep() function is an excellent replacement, but this module is only part of the Perl core from v5.8 onwards. This leaves us with the third best solution: select() function.
Add info on a solution to interacting with windows popups from within the Selenium test scripts.
Updated Example Snippets (markdown)
Created Example Snippets (markdown)