The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Jifty::Test::WWW::Mechanize - Subclass of Test::WWW::Mechanize with extra Jifty features

METHODS

new

Overrides Test::WWW::Mechanize's new to automatically give the bot a cookie jar.

moniker_for ACTION, FIELD1 => VALUE1, FIELD2 => VALUE2

Finds the moniker of the first action of type ACTION whose "constructor" field FIELD1 is VALUE1, and so on.

fill_in_action MONIKER, FIELD1 => VALUE1, FIELD2 => VALUE2, ...

Finds the fields on the current page with the names FIELD1, FIELD2, etc in the MONIKER action, and fills them in. Returns the HTML::Form object of the form that the action is in, or undef if it can't find all the fields.

fill_in_action_ok MONIKER, FIELD1 => VALUE1, FIELD2 => VALUE2, ...

Finds the fields on the current page with the names FIELD1, FIELD2, etc in the MONIKER action, and fills them in. Returns the HTML::Form object of the form that the action is in, or undef if it can't find all the fields.

Also, passes if it finds all of the fields and fails if any of the fields are missing.

action_form MONIKER

Returns the form (as an HTML::Form object) corresponding to the given moniker, and also selects it as the current form. Returns undef if it can't be found.

action_field_value MONIKER, FIELD

Finds the fields on the current page with the names FIELD in the action MONIKER, and returns its value, or undef if it can't be found.

field_error_text MONIKER, FIELD

Finds the error span on the current page for the name FIELD in the action MONIKER, and returns the text (tags stripped) from it. (If the field can't be found.

uri

WWW::Mechanize has a bug where it returns the wrong value for uri after redirect. This fixes that. See http://rt.cpan.org/NoAuth/Bug.html?id=9059

get_html_ok URL

Calls get URL, followed by testing the HTML using Test::HTML::Lint.

submit_html_ok

Calls submit, followed by testing the HTML using Test::HTML::Lint.

Calls follow_link, followed by testing the HTML using Test::HTML::Lint. Warns if it cannot find the specified link (you should use ok on find_link first to check its existence).

session

Returns the server-side session associated with this Mechanize object.

continuation [ID]

Returns the current continuation of the Mechanize object, if any. Or, given an ID, returns the continuation with that ID.