Rommel
Rommel

Reputation: 322

Web page Embedded in a webpage, interacting with Watir elements

I am having problems accessing a text field on a web site. What code would I write to input data into the input field txtUser?

enter image description here

Upvotes: 1

Views: 67

Answers (1)

Željko Filipin
Željko Filipin

Reputation: 57302

You have to explicitly say the text field is in a frame:

browser.frame(:name => "content").text_field(:name => "txtUser").set "Lorem Ipsum"

Upvotes: 1

Related Questions