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

来源:互联网 发布:gb12348-2008标准数据 编辑:程序博客网 时间:2024/05/10 14:16

在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>
        <selectid = "s"name = "ns">
            <optionvalue = "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:///'.concatFile.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
    classSelect
        definitialize e
            raiseNotValidElementError unlesse.is_a?(Selenium::WebDriver::Element)
            @e= e
            child_options
        end
  
        defselect_by_value value
            @ops.eachdo |op|  
                op.clickif op['value'] == value
            end
        end
  
        defselect_by_index index
            @ops[index].clickif valid_index? index
        end
  
        defselect_by_text text
            @ops.eachdo |op|
                op.clickif op['text'] == text
            end
        end
  
        defvalid_index? index
            index.to_i < (@ops.size -1)
        end
  
        defchild_options
            begin
                @ops= @e.find_elements(:tag_name=> 'option')
            rescue
                raiseCanNotFindOptionError, "can not find options in #{@o}"
                exit
            end
        end
  
        defoptions
            @ops_text_arr= []
            @ops.eachdo |op|
                @ops_text_arr<< op['text']
            end
            @ops_text_arr
        end
    end
  
    classEasyWrapError < StandardError; end
    classNotValidElementError < EasyWrapError; end
    classCanNotFindOptionError < EasyWrapError; end
end #EasyWrap


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


select.rb
  
require './easy_wrap'
  
dr = Selenium::WebDriver.for:firefox
select_file = 'file:///'.concatFile.expand_path(File.join(File.dirname(__FILE__),'select.html'))
dr.navigate.to select_file
s = EasyWrap::Select.newdr.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还是有一点实用价值的。


原创粉丝点击