4
我有HTML,看起來像這樣:如何使用Watir訪問具有自定義屬性的元素?
<input custom_attribute="so cool" type="text" />
我想它使用Watir在輸入文字。
我有HTML,看起來像這樣:如何使用Watir訪問具有自定義屬性的元素?
<input custom_attribute="so cool" type="text" />
我想它使用Watir在輸入文字。
browser.text_field(:xpath , "//input[@custom_attribute='so cool']/").set("even more cool")
來源:
菲的回答並沒有爲我用的Watir-webdriver的處理任務。
但是,我確實找到了一種方法來用css選擇器來完成這項工作。
browser.element(:css, "input[custom_attribute='so cool']").send_keys("the coolest")