4

我有如下所示的 HTML:

<input custom_attribute="so cool" type="text" />

我想使用Watir在其中输入文本。

4

2 回答 2

7

菲律宾人的回答不适用于我在 watir-webdriver 的工作。

但是,我确实找到了一种使用 css 选择器完成这项工作的方法。

browser.element(:css, "input[custom_attribute='so cool']").send_keys("the coolest")
于 2013-04-11T00:31:12.373 回答
5
browser.text_field(:xpath , "//input[@custom_attribute='so cool']/").set("even more cool")

资料来源:

于 2009-09-21T11:04:58.163 回答