Selenium3+python3--如何定位鼠标悬停才显示的元素
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Selenium3+python3--如何定位鼠标悬停才显示的元素相关的知识,希望对你有一定的参考价值。
follow yoyo
定位鼠标悬停才显示的元素,要引入新模块
# 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()
以上是关于Selenium3+python3--如何定位鼠标悬停才显示的元素的主要内容,如果未能解决你的问题,请参考以下文章