File tree 3 files changed +5
-2
lines changed
3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ Revision history for Perl extension Test::WWW::Selenium.
2
2
3
3
1.12 -
4
4
- refactor unit tests to use Test::Mock::LWP
5
+ - fix bug in get_boolean_array - thanks to Ilya Averyanov
5
6
6
7
1.11 - Thu Jan 4 19:53:18 PST 2007
7
8
- don't stop a stopped session
Original file line number Diff line number Diff line change 1
1
- bundle test modules with distribution M::I::Bundle
2
2
3
+ - add tests for get_boolean_array()
4
+
3
5
- WWW::Selenium
4
6
- check that browser_url is sane
5
7
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ package WWW::Selenium;
70
70
use strict;
71
71
use warnings;
72
72
73
- our $VERSION = '0.91 ';
73
+ our $VERSION = '0.911 ';
74
74
75
75
=head1 NAME
76
76
@@ -359,7 +359,7 @@ sub get_boolean_array {
359
359
next;
360
360
}
361
361
if ($result[$i] eq "false") {
362
- push (@boolarr, 1 );
362
+ push (@boolarr, 0 );
363
363
next;
364
364
}
365
365
die "result is neither 'true' nor 'false': ". $result[$i];
You can’t perform that action at this time.
0 commit comments