标签: ruby watir
客户名称是包含近30个值的下拉列表,我想从Watir脚本的下拉列表中选择一个值。
我使用了以下代码,但没有发生任何事情。
ie.select_list(:name,“Customers”)。选择“测试”
答案 0 :(得分:8)
使用'set':
ie.select_list(:name, "Customers").set "Test"
http://wiki.openqa.org/display/WTR/Selection+Boxes