selenium中常用的下拉框定位Select

Posted 修罗神天道

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了selenium中常用的下拉框定位Select相关的知识,希望对你有一定的参考价值。

1.在selenium自动化测试中,我们常常遇到更重下拉框。本文介绍三种常用的下拉框定位方法

select_by_index(index) 通过索引定位
select_by_value(value) 通过value值定位
select_by_visible_text(text) 通过文本内容定位

2.html 代码如下,大家可以复制一下内容然后保存为select.html格式

 

<!DOCTYPE html>
<html lang="zh-CN">
<head>
<title>Select选择下拉框演示</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style>
    #div1{
        height: 202px;
        width: 202px;
        background-color:red;
        margin-left: auto;
        margin-right: auto;

    }
    #list{
        height: 150px;
        width: 199px;
        position: relative; 
        margin-left: auto;
        margin-right: auto;
        font: 50px "Microsoft YaHei"; 
    }
</style>
</head>
    <body>
        <div id="div1">
            <select id="list" onchange=";" name="listName">
        <option value="1">orange</option>
        <option value="2">peach</option>
        <option value="3">cherry</option>
        <option value="4">mongo</option>
        <option value="5">pear</option>
        <option value="6">grape</option>
        <option value="7">banana</option>
        <option value="8" selected="">lemon</option>
    </select>
    <p id="p1"></p>
        </div>
    </body>
</html>

3.python定位代码如下

 

coding=utf-8

from selenium import webdriver
from selenium.webdriver.support.select import Select
import os,time

'''
处理下拉框
Select提供了三种方法
select_by_index(index)
select_by_value(value)
select_by_visible_text(text)

'''
driver=webdriver.Chrome()

file_path='file://'+os.path.abspath('select.html')
driver.get(file_path)

time.sleep(2)

#先定位到下拉框

se1 = driver.find_element_by_id("list")

#通过索引值来定位 从0开始
#Select(se1).select_by_index(1)

#通过value属性值等于多少定位
#Select(se1).select_by_value("1")

#通过文本来定位
Select(se1).select_by_visible_text('grape')

4.这只是一部分select方法,详细的还请看官方api文档

https://seleniumhq.github.io/selenium/docs/api/py/webdriver_support/selenium.webdriver.support.select.html#module-selenium.webdriver.support.select

 

以上是关于selenium中常用的下拉框定位Select的主要内容,如果未能解决你的问题,请参考以下文章

selenium Select下拉框

selenium-Python之定位下拉框选择

selenium-Python之定位下拉框选择

python selenium怎么定位图中这种下拉框的选项?

selenium 怎么操作下拉框

Selenium-Select类型的下拉框定位方法