我已经用 Watir-WebDriver 编写了代码来从表中获取链接:
data.rows.each { |row|
puts row.cell(:index => 2).link
}
当我构建它时它会返回它:
#<Watir::Anchor:0x007fc0f24b6aa8>
如何从中获取实际 URL?
我已经用 Watir-WebDriver 编写了代码来从表中获取链接:
data.rows.each { |row|
puts row.cell(:index => 2).link
}
当我构建它时它会返回它:
#<Watir::Anchor:0x007fc0f24b6aa8>
如何从中获取实际 URL?
尝试这个:
data.rows.each {|row| p row.cell(:index => 2).link.href}
更多信息请访问http://watir.github.io/watir-webdriver/doc/Watir/Anchor.html