1

我正在尝试使用 watir-webdriver 从选择列表中选择一个选项。

watir-webdriver gem 版本:mac osx lion 上的 0.6.4 Ruby 1.9.3

选择列表的 HTML:

<select id="cc.expiryMonth" name="cc.expiryMonth">
<option value="0">Month</option>
<option value="1">01</option>
<option value="2">02</option>
<option value="3">03</option>
<option value="4">04</option>
<option value="5">05</option>
<option value="6">06</option>
<option value="7">07</option>
<option value="8">08</option>
<option value="9">09</option>
<option value="10">10</option>
<option value="11">11</option>
<option value="12">12</option>
</select>

我使用的代码是

@browser.select_list(:name => "cc.expiryMonth").options[4].select

我收到错误

Element is not currently visible and so may not be interacted with (Selenium::WebDriver::Error::ElementNotVisibleError)
  [remote server] file:///var/folders/_c/j__zdvw93gqgyyvzwmmgtwwr0000gn/T/webdriver-profile20130620-1023-1s8kag6/extensions/fxdriver@googlecode.com/components/command_processor.js:7736:in `fxdriver.preconditions.visible'
  [remote server] file:///var/folders/_c/j__zdvw93gqgyyvzwmmgtwwr0000gn/T/webdriver-profile20130620-1023-1s8kag6/extensions/fxdriver@googlecode.com/components/command_processor.js:10437:in `DelayedCommand.prototype.checkPreconditions_'
  [remote server] file:///var/folders/_c/j__zdvw93gqgyyvzwmmgtwwr0000gn/T/webdriver-profile20130620-1023-1s8kag6/extensions/fxdriver@googlecode.com/components/command_processor.js:10456:in `DelayedCommand.prototype.executeInternal_/h'
  [remote server] file:///var/folders/_c/j__zdvw93gqgyyvzwmmgtwwr0000gn/T/webdriver-profile20130620-1023-1s8kag6/extensions/fxdriver@googlecode.com/components/command_processor.js:10461:in `DelayedCommand.prototype.executeInternal_'
  [remote server] file:///var/folders/_c/j__zdvw93gqgyyvzwmmgtwwr0000gn/T/webdriver-profile20130620-1023-1s8kag6/extensions/fxdriver@googlecode.com/components/command_processor.js:10401:in `DelayedCommand.prototype.execute/<'
  ./features/step_definitions/Wotif_FlightSearch_DOM_steps.rb:145:in `/^I enter all details on booking page$/'

浏览了 gem 库中的 watir-webdriver 代码并用尽了所有选择选项的方法,所有这些方法都抛出了相同的错误。

@browser.select_list(:name => "cc.expiryMonth").focus

成功,但选择选项会引发元素不可见错误。也尝试了 send_keys 失败。不胜感激有关如何处理此问题的任何建议

更新:

@browser.select_list(:name => "cc.expiryMonth").options[8].value

返回值但

@browser.select_list(:name => "cc.expiryMonth").options[8].select

或者

@browser.select_list(:name => "cc.expiryMonth").select @browser.select_list(:name => "cc.expiryMonth").options[8].value returns element not found error    
4

4 回答 4

0

你试过这个吗:

@browser.select_list(:name => "cc.expiryMonth").select '04'

甚至

b = Watir::Browser.start 'bit.ly/watir-webdriver-demo'
s = b.select_list :name => 'cc.expiryMonth'
s.select '04'
s.selected_options

告诉我怎么了

于 2013-06-20T12:48:06.097 回答
0

这可能是时间问题。试试这个:

@browser.select_list(:name => "cc.expiryMonth").options[4].when_present.select

更多信息请访问http://watirwebdriver.com/waiting/

于 2013-06-20T13:04:31.477 回答
0

我想知道页面上是否有多个具有此名称的选择列表,并且 Watir-webdriver 正在等待第一个元素,但可见的实际上是第二个元素。

试试这个:

 p @browser.select_lists(:name => "cc.expiryMonth").count

它是否在命令提示符/mac 等效项中返回高于 1?如果是这样,您可以使用索引来选择您想要的

@browser.select_list(:name => "cc.expiryMonth", :index => 1).select("04")
于 2013-06-21T15:27:21.173 回答
-2

我终于能够通过关注 stackoverflow 上的其他问题之一来解决这个问题,其中建议使用 javascript 来选择选择列表中的选项。没有其他工作。很高兴终于有什么工作了

于 2013-06-25T12:12:56.457 回答