这是我想用watir检查的链接。
代码位于<a>
标记内:
<a title="logout" href="admin/logout.aspx" Logout>
我已包含的代码
ie.link(:href, "admin/logout.aspx").click
执行期间出错
'assert_exists':Unable to locate the element,using {:tag name=}["a"],:href=>"admin/logout.aspx"}
(watir::Exception::Unknown object Exception)
答案 0 :(得分:1)
据我所知,Internet Explorer将所有相对链接(“admin / logout.aspx”)转换为绝对(“http://site.com/admin/logout.aspx”)。
试试这个:
ie.link(:href, /logout/).click
答案 1 :(得分:0)
ie.a(:text => "Logout").when_present.click