Selenium-webdriver系列教程(9)——如何操作select下拉框

67 篇文章 0 订阅

在selenium-webdriver中定位select list的方法比较简单,用id和name等属性可以很方便的将select给找出来,但是怎么去选择下拉框中的某一项呢?

思路是这样的,首先定位到select list元素,然后找出该select list下所有的option,点击该option element既可,以下面的html代码为例

<html>
     <head>
         <title>Select</title>
     </head>
     <body>
         <span>select demo</span>
         <select id = "s" name = "ns" >
             <option value = "0" >Op1</option>
             <option value = "1" >Op2</option>
             <option value = "2" >Op3</option>
             <option value = "3" >Op4</option>
         </select>
     </body>
</html>

通过下面的代码可以选择到下拉框中的第2个option,也就是text为Op2的选项

require 'rubygems'
require 'selenium-webdriver'
  
dr = Selenium::WebDriver. for :firefox
select_file = 'file:///' .concat File .expand_path( File .join( File .dirname( __FILE__ ), 'select.html' ))
dr.navigate.to select_file
dr.find_element( :id => 's' ).find_elements( :tag_name => 'option' )[ 1 ].click


不难看出这样的代码还是不太直观的。为了能够更好的操作select元素,我们可以对其做一个简单的封装,示例代码如下:


easy_wrap.rb
  
require 'rubygems'
require 'selenium-webdriver'
module EasyWrap
     class Select
         def initialize e
             raise NotValidElementError unless e.is_a?(Selenium::WebDriver::Element)
             @e = e
             child_options
         end
  
         def select_by_value value
             @ops . each do |op|  
                 op.click if op[ 'value' ] == value
             end
         end
  
         def select_by_index index
             @ops [index].click if valid_index? index
         end
  
         def select_by_text text
             @ops . each do |op|
                 op.click if op[ 'text' ] == text
             end
         end
  
         def valid_index? index
             index.to_i < ( @ops .size - 1 )
         end
  
         def child_options
             begin
                 @ops = @e .find_elements( :tag_name => 'option' )
             rescue
                 raise CanNotFindOptionError, "can not find options in #{@o}"
                 exit
             end
         end
  
         def options
             @ops_text_arr = []
             @ops . each do |op|
                 @ops_text_arr << op[ 'text' ]
             end
             @ops_text_arr
         end
     end
  
     class EasyWrapError < StandardError; end
     class NotValidElementError < EasyWrapError; end
     class CanNotFindOptionError < EasyWrapError; end
end #EasyWrap


通过引用该文件,我们的代码此时就应该是如下所示:


select.rb
  
require './easy_wrap'
  
dr = Selenium::WebDriver. for :firefox
select_file = 'file:///' .concat File .expand_path( File .join( File .dirname( __FILE__ ), 'select.html' ))
dr.navigate.to select_file
s = EasyWrap::Select. new dr.find_element( :id => 's' )
# 选择value是1的option
s.select_by_value( '1' )
sleep 2
# 选择index是2的option,也就是第3个option
s.select_by_index( 2 )
sleep 2
# 选择text是Op4的option
s.select_by_text( 'Op4' )
sleep 3
dr.close


通过上面的代码可以看出,在选择了下拉框的某1个option时,如果下拉框上绑定有onchange事件,那么onchange事件是不会被触发的,这应该是上面解决方案的一个缺陷。

另外EasyWrap由于简单起见并没有支持选择多个option时的情况,好在选择多个option的情况一般不太多见,所以EasyWrap还是有一点实用价值的。


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值