Watir and text field inside iframe

前端 未结 4 1636
自闭症患者
自闭症患者 2021-01-22 10:26

I\'m trying to setup new text into a text field using Watir. The text field is placed inside iframe.

4条回答
  •  感动是毒
    2021-01-22 10:52

    The working solution is:

    browser.frame(:index => 1).text_field(:index => 0).set "admin"
    

    Now I'm trying to understand why :)

提交回复
热议问题