我有如下所示的 HTML:
<input custom_attribute="so cool" type="text" />
我想使用Watir在其中输入文本。
菲律宾人的回答不适用于我在 watir-webdriver 的工作。
但是,我确实找到了一种使用 css 选择器完成这项工作的方法。
browser.element(:css, "input[custom_attribute='so cool']").send_keys("the coolest")
browser.text_field(:xpath , "//input[@custom_attribute='so cool']/").set("even more cool")
资料来源: