最近,我在使用找不到答案的页面对象时遇到了一个问题。
使用选择列表选择选项时。我需要按部分文本或属性选择。这是一个例子:
<select id="custcol95" name="custcol95">
<option selected="" value="">- Select -</option>
<option value="5">Monthly Basic Plan - $27.99</option>
<option value="1">Monthly Business Plan - $54.99</option>
</select>
我试过了:
select_list(:planPurchase, :id => 'custcol95')
我可以做这个:
selectCloudPlan_element.option(:value, CLOUD_PLANS['PersonalMonthly']).select
但这已被弃用。
我还没有在网络上的任何地方看到按值选择或按索引选择。一个存在吗?
此外,如果通过部分文本进行搜索可以解决我的问题。
提前致谢。