博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
selenium-滚动
阅读量:5326 次
发布时间:2019-06-14

本文共 641 字,大约阅读时间需要 2 分钟。

移动到指定的坐标(相对当前的坐标移动)

driver.execute_script("window.scrollBy(0, 700)");

移动到窗口绝对位置坐标,如下移动到纵坐标1600像素位置

driver.execute_script("window.scrollTo(0, 1600)");

移动到页面顶部

self.browser.execute_script("window.scrollTo(document.body.scrollHeight,0);")

移动到页面底部

self.browser.execute_script("window.scrollTo(0,document.body.scrollHeight);")

移动到一个标签的位置

_location=self.browser.find_element_by_class_name('location')#锁定标签print("找到location")_location.click()#点击top=int(_location.location['y'])print("获取location的y坐标:%d" %(top))self.browser.execute_script('document.documentElement.scrollTop={}'.format(top))#移动到该坐标

转载于:https://www.cnblogs.com/an5456/p/11300352.html

你可能感兴趣的文章
shell cat 合并文件,合并数据库sql文件
查看>>
Android 将drawable下的图片转换成bitmap、Drawable
查看>>
介绍Win7 win8 上Java环境的配置
查看>>
Linux设置环境变量的方法
查看>>
构建自己的项目管理方案
查看>>
利用pca分析fmri的生理噪声
查看>>
div水平居中且垂直居中
查看>>
epoll使用具体解释(精髓)
查看>>
AndroidArchitecture
查看>>
安装Endnote X6,但Word插件显示的总是Endnote Web"解决办法
查看>>
python全栈 计算机硬件管理 —— 硬件
查看>>
大数据学习
查看>>
简单工厂模式
查看>>
Delphi7编译的程序自动中Win32.Induc.a病毒的解决办法
查看>>
Objective-C 【关于导入类(@class 和 #import的区别)】
查看>>
倍福TwinCAT(贝福Beckhoff)常见问题(FAQ)-点击运行按钮进入到运行状态报错Error starting TwinCAT System怎么办 AdsWarning1823怎么办...
查看>>
【转】javascript 中的很多有用的东西
查看>>
Centos7.2正常启动关闭CDH5.16.1
查看>>
Android 监听返回键、HOME键
查看>>
Android ContentProvider的实现
查看>>