Skip Menu |

This queue is for tickets about the Test-WWW-Selenium CPAN distribution.

Report information
The Basics
Id: 65103
Status: resolved
Priority: 0/
Queue: Test-WWW-Selenium

People
Owner: Nobody in particular
Requestors: mail [...] herbert-leitz.de
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 1.23
Fixed in: (no value)



Subject: Test names must always be third arg
If default_names=0, the test names are expected to be the third argument to *_ok functions. So it's sometimes necessary to add a dummy argument in second position. This example from SYNOPSIS doesn't work: $sel->open_ok("http://www.google.com", "fetched G's site alright"); and should be changed to: $sel->open_ok("http://www.google.com", undef, "fetched G's site alright"); Comparator functions (is, isnt etc.) are fine. Herbert
I've fixed the synopsis and tweaked the docs in 1.24. Thanks.