【Python测试开发】对选择下拉框的处理

下拉选择框前端页面:

DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>下拉选择框title>
head>
<body>
    <select name="myselect" id="s1">
        <option value="o0">请选择option>
        <option value="o1">谷歌搜索option>
        <option value="o2">火狐搜索option>
        <option value="o3">必应搜索option>
        <option value="o4">百度搜索option>
        <option value="o5">搜狗搜索option>
    select>

body>
html>

对选择下拉框的处理:

from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import Select
import os

# 打开浏览器
driver = webdriver.Chrome()
# 最大化
driver.maximize_window()
# 隐式等待
driver.implicitly_wait(5)

# 路径转换拼接
filepath = "file:///" + os.path.abspath("select.html")
# 打开网页
driver.get(filepath)

# 定位到下拉框元素
select_obj = driver.find_element(By.NAME, 'myselect')
# 对类进行实例化,并传入下拉选择框对象
s1 = Select(select_obj)

# 选择具体的选项,有3种方式
# 方式一:通过索引选择,索引从0开始
# s1.select_by_index(2)
# 方式二:通过value属性选择
# s1.select_by_value("o4")
# 方式三:通过文本选择
s1.select_by_visible_text("谷歌搜索")

# 关闭浏览器
driver.quit()

你可能感兴趣的:(自动化测试,python)