如何在不使用 js/jquery 的情况下使用 watir-webdriver 更改 href 属性值?
我可以得到一个属性值:
@browser.frames[2].div(:id,"mid-2").link(:class,"btn-lrg").attribute_value("href")
但我还需要更改一些 href 属性值。
如何在不使用 js/jquery 的情况下使用 watir-webdriver 更改 href 属性值?
我可以得到一个属性值:
@browser.frames[2].div(:id,"mid-2").link(:class,"btn-lrg").attribute_value("href")
但我还需要更改一些 href 属性值。
我认为修改链接的唯一方法是使用 javascript。由于元素是使用 watir 检索的,因此代码非常易于维护。
#Get the first link (or any element you want)
element = browser.frame.link
#Check element's initial attribute
puts element.attribute_value('href')
#=> "page_a.html"
#Execute javascript to change the attribute
script = "return arguments[0].href = 'page_b.html'"
browser.execute_script(script, element)
#Check that the attribute has changed
puts element.attribute_value('href')
#=> "page_b.html"