Hi Monks,
I am using WWW::Mechanize scripts to automate a web application and I am fairly new to Mechanize. I am struck at a place where my web application waits for response from the network. If the response doesnot arrive it displays page A and if response is obtained it displays page B.
To automate the above, I am using redirect_ok. But redirect_ok aborts the application. My Web application is using POST, for redirections under POST i added the line
push( @{$browser->requests_redirectable}, 'POST' );
to my code.
A few lines of my code looks like this
$response = $browser->get($url);
checkResponseFromURL();
$response = $browser->click("btnFindXYZ");
checkResponseFromURL();
$browser->field("txtAddress", "some Text",1);
$browser->redirect_ok();
$response = $browser->click("btnFind");
checkResponseFromURL();
Monks,Please help me out.
Sincerly
Amar
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.