如何使用Watir访问具有自定义属性的元素?

时间:2009-09-21 11:02:17

标签: html internet-explorer watir

我的HTML看起来像这样:

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

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

2 个答案:

答案 0 :(得分:7)

菲律宾的回答对我的watir-webdriver工作无效。

然而,我确实找到了使用css选择器完成工作的方法。

browser.element(:css, "input[custom_attribute='so cool']").send_keys("the coolest")

答案 1 :(得分:5)

browser.text_field(:xpath , "//input[@custom_attribute='so cool']/").set("even more cool")

来源: