I\'m trying to setup new text into a text field using Watir. The text field is placed inside iframe.
The working solution is:
browser.frame(:index => 1).text_field(:index => 0).set "admin"
Now I'm trying to understand why :)