处理Selenium3+python3定位鼠标悬停才显示的元素
时间:2022-03-29 09:14:49|栏目:Python代码|点击: 次
先给大家介绍下Selenium3+python3--如何定位鼠标悬停才显示的元素
定位鼠标悬停才显示的元素,要引入新模块
# coding:utf-8 from selenium import webdriver from selenium.webdriver.common.action_chains import ActionChains driver = webdriver.Firefox() driver.get("http://www.baidu.com") # 定位百度页面上鼠标悬停设置按钮 mouse = driver.find_element_by_link_text("设置") ActionChains(driver).move_to_element(mouse).perform() driver.find_element_by_link_text("高级搜索").click()
知识点扩展:
python selenium 鼠标悬停
#鼠标悬停 chain = ActionChains(driver) implement = driver.find_element_by_link_text() chain.move_to_element(implement).perform()
模拟鼠标悬停后,后搜索需要内容
总结
上一篇:python实现水仙花数实例讲解
栏 目:Python代码
本文标题:处理Selenium3+python3定位鼠标悬停才显示的元素
本文地址:http://www.codeinn.net/misctech/197607.html