使用Ruby和Watir设置单选按钮

时间:2013-10-24 19:30:07

标签: ruby radio-button watir-webdriver

对,我遇到一段代码问题。我知道如何设置单选按钮我可以在大多数网站上进行。但是当试图设置下面这段代码给出的值时,我无法使其工作。我已尝试使用标签ect“等待”,“父设置”并搜索各种类型。任何人都可以指出我正确的方向。

<div class="CheckBoxContainer">

<ol>
    <li>
        <span class="radio" style="background-position: 0px 0px;"></span>
        <input class="styled" type="radio" value="1" name="clocksource"></input>
        <label class="dialogRT">

            Internal

        </label>
    </li>
    <li>
        <span class="radio" style="background-position: 0px 0px;"></span>
        <input class="styled" type="radio" value="3" name="clocksource"></input>
        <label class="dialogRT">

            External AES50

        </label>
    </li>
    <li>
        <span class="radio" style="background-position: 0px -50px;"></span>
        <input class="styled" type="radio" checked="checked" value="2"       name="clocksource"></input>
        <label class="dialogRT">

            External Snake

        </label>
    </li>
</ol>

我收到此错误:

[remote server] file:///var/folders/81/j_87g_h12_x7bkl2w58zwqr00000gn/T/webdriver-profile20131024-1211-10eh16l/extensions/fxdriver@googlecode.com/components/command_processor.js:8210:in `fxdriver.preconditions.visible': Element is not currently visible and so may not be interacted with 

由于

Maximillion

1 个答案:

答案 0 :(得分:0)

我怀疑你有时间问题。试试这个:

Watir::Wait.until { @browser.element.visible?, thing  }