I am using watir with firefox to capture a webpage after filling out a form. Here is the short part of my code:
browser.button(:type => 'submit').click
sleep 10
browser.element(:id => 'footer').wait_until_present(timeout=30)
html = browser.html
This message appears:
Instead of passing arguments into
What does it mean? How can i solve this? Thanks for the help.
source
share