Radio button
- set
选择指定的radio选项
browser.radio(:id, "radio1").set
- set?
判断该radio选项是否被选中
browser.radio(:id, "radio1").set?
Screenshot
-base64
以base64编码保存考屏图像
browser.screenshot.base64
-png
以png编码保存考屏图像
browser.screenshot.png
-save(path)
将图像保存到指定的路径
browser.screenshot.save("c:")
Select
- clear
清楚所有的选择好的选项
browser.select(:id, "select1").clear
- enabled?
判断select是否可以选择
browser.select(:id, "select1").enabled?
- include?(str_or_rx)
判断所有的选项的文本或者标签是否匹配指定字符串
browser.select(:id, "select1").include?("option1")
- options
返回一个数组包含所有的选项
browser.select(:id, "select1").options
- select(str_or_rx)
选择文本或者标签匹配指定的字符串的选项
browser.select(:id, "select1").select("Argo")
- select_value(str_or_rx)
选择内容匹配指定的字符串的选项
browser.select(:id, "select1").select_value("Argo")
-selected?(str_or_rx)
判断文本或者标签匹配指定的字符串的选项是否选中
browser.select(:id, "select1").selected?("Argo")
- selected_options
返回一个数组包含所有已经选择的选项
browser.select(:id, "select1").selected_options
- value
返回列表第一个选项的值
browser.select(:id, "select1").value