I'm new to web scraping with Perl, and I'm trying to submit the page by filling in username and password fields, and clicking submit. I inspected the HTML code of the button in question, and it looks like:
<input type="submit" class="button formSubmission" value="Sign In">
I read that WWW::Mechanize
can't handle JavaScript, but I'm not sure if the code I'm looking at is JavaScript, or my implementation is just wrong. I tried $mech->click_button("Sign In");
halfheartedly, but received the error that no such field existed.
Any ideas?