随心测试_Python Se_005<鼠标悬停操作>

温馨提示:鼠标悬停操作_代码说明

  1. 环境配置:win10 + pycharm + python 3.6 + se 3.13
  2. 测试需求:测试baidu首页,设置功能
  3. 注意事项:
    • se3中,不同的浏览器需要匹配不同的driver驱动,且版本兼容
    • 案例中的driver驱动,配置在:python 安装环境目录下:C:\Python\Python36-64\Script
    • 截图案例:随心测试_Python Se_005<鼠标悬停操作>

#coding:UTF-8
from selenium import webdriver
from selenium.webdriver.common.action_chains import ActionChains #导入鼠标操作模块
from time import sleep

ff = webdriver.Firefox()
ff.maximize_window()
ff.implicitly_wait(3)
ff.get("https://www.baidu.com/")

"""
测试需求:操作百度页面的设置功能
方式:使用鼠标悬停,操作元素,截图验证
"""
link_ele = ff.find_element_by_link_text("设置")
ActionChains(ff).move_to_element(link_ele).perform() #模拟:鼠标悬停操作
ff.save_screenshot("set.png")# 获取操作后,页面截图文件

search_set = ff.find_element_by_xpath("//a[@class='setpref']") # 定位:搜索设置 元素
gjsearch_ele = ff.find_element_by_xpath("//div[@class='bdpfmenu']/a[2]") #定位:高级搜索 元素

gjsearch_ele.click() # 模拟:点击高级搜索操作
sleep(1)
ff.save_screenshot("gj.png") # 获取操作后,页面截图文件
ff.quit() #退出


上一篇:005-电影院卖票案例牵扯出的多线程安全问题


下一篇:nginx: [emerg] open() "/var/run/nginx/nginx.pid" failed (2: No such file or directory)