码迷,mamicode.com
首页 > 编程语言 > 详细

Selenium3+python3--如何定位鼠标悬停才显示的元素

时间:2019-04-03 12:49:26      阅读:493      评论:0      收藏:0      [点我收藏+]

标签:orm   显示   mon   --   follow   鼠标   style   www.   for   

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--如何定位鼠标悬停才显示的元素

标签:orm   显示   mon   --   follow   鼠标   style   www.   for   

原文地址:https://www.cnblogs.com/shanliguniang/p/10647862.html

(1)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!