答案 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")
来源: