selenium中怎么定位百度首页-设置-搜索设置?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了selenium中怎么定位百度首页-设置-搜索设置?相关的知识,希望对你有一定的参考价值。
selenium +python
参考技术A driver = webdriver.Chrome(r'马赛克\chromedriver.exe') # 马赛克为你的chromedriver目录driver.maximize_window()
driver.implicitly_wait(10) # 设置隐式等待
driver.get('http://www.baidu.com')
# 鼠标悬停设置 链接
link = driver.find_element_by_link_text('设置')
ActionChains(driver).move_to_element(link).perform()
# 打开搜索设置
driver.find_element_by_link_text('搜索设置').click() 参考技术B 百度下鼠标悬停本回答被提问者采纳
以上是关于selenium中怎么定位百度首页-设置-搜索设置?的主要内容,如果未能解决你的问题,请参考以下文章
跟浩哥学自动化测试Selenium -- 浏览器的基本操作与元素定位
selenium自动化测试之单选下拉列表alert弹窗处理页面刷新