从Watir :: Anchor对象获取实际链接URL

时间:2013-10-04 02:27:56

标签: watir watir-webdriver

我已经用Watir-WebDriver编写代码来从表中获取链接:

data.rows.each { |row|
puts row.cell(:index => 2).link
}

当我构建它时它会返回:

#<Watir::Anchor:0x007fc0f24b6aa8>

如何从中获取实际网址?

1 个答案:

答案 0 :(得分:3)

试试这个:

data.rows.each {|row| p row.cell(:index => 2).link.href}

http://watir.github.io/watir-webdriver/doc/Watir/Anchor.html

的更多信息