最近我在使用我无法找到答案的页面对象时遇到了问题。
使用选择列表选择选项时。我需要通过部分文本或属性来选择。这是一个例子:
<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
但已弃用。
我还没有在网络上的任何地方看到按值选择选项或索引。是否存在?
此外,如果有部分文字搜索可以解决我的问题。
提前致谢。
答案 0 :(得分:6)
页面对象gem已经支持通过部分文本进行选择:
page.planPurchase = /Basic/
puts page.planPurchase
#=> "Monthly Basic Plan - $27.99"
使用select_value
:
page.planPurchase_element.select_value('5')
puts page.planPurchase
#=> "Monthly Basic Plan - $27.99"
页面对象gem支持使用[]
按索引选择选项。请注意,您必须使用.click
,因为没有.select
。该指数从0开始。
page.planPurchase_element[2].click
puts page.planPurchase
#=> "Monthly Business Plan - $54.99"