venkatesan_G02 has asked for the wisdom of the Perl Monks concerning the following question:
I am using WWW::Selenium module to interact with a web page automatically. I am able to login and check for necessary details successfully. But when i try to enter some commands, i have to type ENTER key at the end of my command because there is no submit key in the form.
I tried the following ways to simulate the enter key in www::selenium but failed.
$sel->type_keys("q","\13"); $sel->key_down("q","\13");
Type keys is just typing \13 plainly but with key down, i do not see anything happening at all.
Please advice!!
|
|---|