I use watir with firefox to grab a webpage after filling a form. Here a 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 occur:
Instead of passing arguments into #wait_until_present method, use Keywords
What does that mean? How can i solve this? Thanks for help.