python+selenium常用javascript函数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python+selenium常用javascript函数相关的知识,希望对你有一定的参考价值。

1、操作滚动条

js="var q=document.documentElement.scrollTop=10000"
driver.execute_script(js)

2、移除属性:时间控件处理

# js = "$(‘input[id=ECTermOfTrustSart]‘).removeAttr(‘readonly‘)" # 2.jQuery,移除属性
# js = "$(‘input[id=ECTermOfTrustSart]‘).attr(‘readonly‘,false)" # 3.jQuery,设置为false
# js = "$(‘input[id=ECTermOfTrustSart]‘).attr(‘readonly‘,‘‘)" # 4.jQuery,设置为空(同3)
js = "document.getElementById(‘ECTermOfTrustSart‘).removeAttribute(‘readonly‘)"#1.原生js,移除属性
driver.execute_script(js)






以上是关于python+selenium常用javascript函数的主要内容,如果未能解决你的问题,请参考以下文章

python + selenium 常用方法

python selenium--常用函数3

python Selenium自己常用的函数

python+selenium常用javascript函数

python+selenium——详解介绍Selenium常用API的使用--python语言(完整版)

selenium + Python -- 常用8种元素定位