在python调用js函数使用document.getElementById

Call js function in python to use document.getElementById

我最近询问了一种在 python 中调用 js 函数的方法。人们给了我建议,比如使用 js2py 或 pyv8,但问题是它不允许我使用以下 js 命令:

document.getElementById("example");

所以我的问题是:有没有办法从 python 函数调用 js 并允许您使用上面的 js 命令?

提前致谢!

如果在python中调用js函数意味着:如何select具有特定id的节点?[​​=15=] , 那么你可以用 BeautifulSoup 来表示:

from bs4 import BeautifulSoup

html_doc = "<html><head><title></title></head><body><div id='example'></body></html>"

soup = BeautifulSoup(html_doc, 'html.parser')
soup.find(id="example")