1

我正在尝试使用 watir-webdriver 从 select_list 返回所选值的文本。以下通常可以工作(使用 Watir 示例页面http://bit.ly/watir-example的示例)

browser = Watir::Browser.new :ie
browser.goto "http://bit.ly/watir-example"
browser.select_list(:id => "entry_6").option(:index, 2).select
puts browser.select_list(:id => "entry_6").select_list(:id => "entry_6").selected_options

=>Internet Explorer

但是,如果您将相同的代码粘贴到框架上,我将一无所获。

browser = Watir::Browser.new :ie
browser.goto "test_iframe.html"
browser.frame(:id => "test").select_list(:id => "entry_6").option(:index, 2).select
puts browser.frame(:id => "test").select_list(:id => "entry_6").select_list(:id => "entry_6").selected_options

=>Nothing returned

iframe 示例:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>

<body>
<p>TEST IFRAME ISSUES</p>

<iframe src="http://bit.ly/watir-example" id="test" width="100%" height="1400px">

</iframe>

</body>
</html>

我错过了什么还是有其他方法可以实现这一目标?

4

1 回答 1

1

当 select_list 在 Windows 上的 iFrame 中时,看起来像是 selected_options 中的错误。尝试使用 .value 代替。

b = Watir::Browser.start 'http://dl.dropbox.com/u/18859962/iframe.html', :ie
b.frame.exist? #=> true
b.frame.text_fields.count #=> 2
b.frame(:id => "test").select_list(:id => "entry_6").option(:index, 2).select
puts b.frame(:id => "test").select_list(:id => "entry_6").selected_options #=> nil
puts b.frame(:id => "test").select_list(:id => "entry_6").value
 # Internet Explorer
b.goto "bit.ly/watir-example"
b.select_list(:id => "entry_6").option(:index, 2).select
puts b.select_list(:id => "entry_6").selected_options #Internet Explorer
puts b.select_list(:id => "entry_6").value #Internet Explorer

我已将此作为 Watir-WebDriver 错误提出:https ://github.com/jarib/watir-webdriver/issues/102

更新

同时,可以循环遍历选项,找到选中的那个,然后吐出html文本:

require 'nokogiri'
b.frame(:id => "test").select_list(:id => "entry_6").options.each do |option|
  puts Nokogiri::HTML(option.html).text if option.selected?
end

更新

这已在 watir-webdriver 0.3.3 中解决

于 2011-09-20T23:41:15.130 回答