0

我正在使用 safariwatir,我似乎无法让我的代码从列表中选择一个选项。我用来选择的语法是:

browser.select_list(:id," select").select_value("USA")

这是表格本身的 HTML 代码:

<table>
    <input type="textbox" name="selectedIndex" style="display:none" id="selectedIndex" />
    <input type="hidden" id="fromNo" />
    <input type="hidden" id="toNo" />
  <tr><td height="5px" colspan="2"></td></tr>
  <tr>
    <td class="col-header"> 
        Select Base No.
    </td>
    <td class="col-field" align="left"> 

       <select id="select" name="select" onChange="loadFrames();disableTemporarily('select');"> 

        <option value="" selected>Select a base</option>

        <option value="CSindicator=Y&MMindicator=Y&FXindicator=Y&customerNum=MTAzNjQ5&branch=MTAy&GFCID=&accountNum=&asOfDate=&countrycode=102&activebase=MTAzNjQ5&MERMAID=c2dsaW13ZWlzYW5vbmxpbg==&PLANERILLA=c2dsaW13ZWlzYW5vbmxpbg==">USA</option>



        </select>
    </td>
  </tr>
</table>

我什至试图把长期价值和所有。当我运行它时,终端确实输出一个 nil,这在通常情况下意味着它的工作,但该列表仍未选中。任何想法或帮助将不胜感激。谢谢。

4

1 回答 1

1
于 2012-04-18T19:14:44.310 回答