一、使用selenium直接在当前页面中进行js交互
(一)js的处理
selenium能够执行js,这使得selenium拥有更为强大的能力。既然能执行js,那么js能做的事,selenium应该大部分也能做
直接使用js操作页面,能解决很多click()不生效的问题
页面滚动到底部、顶部
处理富文本,时间控件的输入
(二)selenium中如何调用js
例如js代码:
window.alert(‘Selenium弹框测试’)
a = document.getElementById(‘kw’).value
document.title
JSON.stringify(performance.timing)
selenium提供了一个内置的方法execute_script()来调用js
driver.execute_script(“window.alert(‘Selenium弹框测试’)”)
driver.execute_script(“a=document.getElementById(‘kw’).value;window.alert(a)”)
如何返回
driver.execute_script(“return document.getElementById(‘kw’).value”)
二、常用的几种使用操作使用js实现
js处理:滑动页面、定位元素
def test_js_scroll(self)