Update of /cvsroot/http-webtest/HTTP-WebTest/lib/HTTP
In directory usw-pr-cvs1:/tmp/cvs-serv8129/lib/HTTP
Modified Files:
WebTest.pm
Log Message:
Regenerated
Index: WebTest.pm
===================================================================
RCS file: /cvsroot/http-webtest/HTTP-WebTest/lib/HTTP/WebTest.pm,v
retrieving revision 1.26
retrieving revision 1.27
diff -C2 -d -r1.26 -r1.27
*** WebTest.pm 17 Aug 2002 10:27:04 -0000 1.26
--- WebTest.pm 22 Aug 2002 09:10:10 -0000 1.27
***************
*** 27,31 ****
package HTTP::WebTest;
! $VERSION = '1.99_08';
# workaround for warning caused by underscore char in $VERSION
$VERSION = eval $VERSION;
--- 27,31 ----
package HTTP::WebTest;
! $VERSION = '1.99_09';
# workaround for warning caused by underscore char in $VERSION
$VERSION = eval $VERSION;
***************
*** 641,647 ****
I<NON-CORE PARAMETER> from L<HTTP::WebTest::Plugin::Click>
! Given name of submit button (i.e. C<<input type="submit"E<gt>> tag
! inside of C<<formE<gt>> tag) on previosly requested HTML page, builds
! test request to the submitted page.
Note that you still need to pass all form parameters yourself using
--- 641,647 ----
I<NON-CORE PARAMETER> from L<HTTP::WebTest::Plugin::Click>
! Given name of submit button (i.e. C<<input type="submit"E<gt>> tag or
! C<<input type="image"E<gt>> inside of C<<formE<gt>> tag) on previously
! requested HTML page, builds test request to the submitted page.
Note that you still need to pass all form parameters yourself using
***************
*** 1042,1045 ****
--- 1042,1055 ----
directly to the htdocs directory, use a pathname of C<.> or C<./.>.
+ =head2 form_name
+
+ I<NON-CORE PARAMETER> from L<HTTP::WebTest::Plugin::Click>
+
+ Give form name attribute (i.e. C<<form name="foo"E<gt>>) on previously
+ requested HTML page, builds test request to the submitted page.
+
+ Note that you still need to pass all form parameters yourself using
+ C<params> test parameter.
+
=head2 handle_redirects
***************
*** 1222,1225 ****
--- 1232,1247 ----
Any number less than C<max_rtime> (if C<max_rtime> is specified).
+ =head2 on_finish
+
+ I<NON-CORE PARAMETER> from L<HTTP::WebTest::Plugin::Hooks>
+
+ The value of this test parameter is ignored. However, it is evaluted
+ before the test sequence is run, so it can be used to run finalization
+ code when the test sequence is finished.
+
+ =head3 Example
+
+ See example in L<HTTP::WebTest::Cookbook|HTTP::WebTest::Cookbook>.
+
=head2 on_request
***************
*** 1227,1231 ****
The value of this test parameter is ignored. However, it is evaluted
! before the HTTP request is done, so it can be used to do
initalization before the request.
--- 1249,1253 ----
The value of this test parameter is ignored. However, it is evaluted
! before the HTTP request is done, so it can be used to do
initalization before the request.
***************
*** 1251,1254 ****
--- 1273,1288 ----
C<yes> if test is successful or C<no> if it is not. C<COMMENT> is a
comment associated with this test.
+
+ =head3 Example
+
+ See example in L<HTTP::WebTest::Cookbook|HTTP::WebTest::Cookbook>.
+
+ =head2 on_start
+
+ I<NON-CORE PARAMETER> from L<HTTP::WebTest::Plugin::Hooks>
+
+ The value of this test parameter is ignored. However, it is evaluted
+ before the test sequence is run, so it can be used to do initalization
+ before the test sequence run.
=head3 Example
|