python 将jQuery注入Selenium Driver

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 将jQuery注入Selenium Driver相关的知识,希望对你有一定的参考价值。

from selenium import webdriver
driver = webdriver.Firefox()
driver.get('https://www.facebook.com/')

with open('jquery-1.9.1.min.js', 'r') as jquery_js: 
    jquery = jquery_js.read() #read the jquery from a file
    driver.execute_script(jquery) #active the jquery lib
    driver.execute_script("$('#email').text('anhld')")

以上是关于python 将jQuery注入Selenium Driver的主要内容,如果未能解决你的问题,请参考以下文章

Python selenium巧用Javascript脚本注入解决按钮点选问题

使用 Selenium Python 执行带有 null 条件的 Jquery

python+selenium十一:jQuery和js语法js处理iframe

python+selenium十一:jQuery和js语法js处理iframe

使用 Selenium 和 PhantomJS 将 javascript polyfill 注入页面

selenium+python自动化96-执行jquery报:$ is not defined