1、将目标元素移动到页面可是范围内:
el = driver.find_element_by_id("ageInputId1")
el.location_once_scrolled_into_view
2、将浏览器滚动条移动至最底部:
js = "var q=document.documentElement.scrollTop=10000"
driver.execute_script(js)
Posted Chaman囍
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了selenium 常用小方法相关的知识,希望对你有一定的参考价值。
1、将目标元素移动到页面可是范围内:
el = driver.find_element_by_id("ageInputId1")
el.location_once_scrolled_into_view
2、将浏览器滚动条移动至最底部:
js = "var q=document.documentElement.scrollTop=10000"
driver.execute_script(js)
以上是关于selenium 常用小方法的主要内容,如果未能解决你的问题,请参考以下文章
Python+Selenium进行UI自动化测试项目中,常用的小技巧2:读取配置文件(configparser,.ini文件)
Python+Selenium进行UI自动化测试项目中,常用的小技巧3:写入excel表(python,xlsxwriter)
Python+Selenium进行UI自动化测试项目中,常用的小技巧1:读取excel表,转化成字典(dict)输出
使用selenium和phantomJS浏览器获取网页内容的小演示
Python+Selenium进行UI自动化测试项目中,常用的小技巧4:日志打印,longging模块(控制台和文件同时输出)