Answer the question
In order to leave comments, you need to log in
Is there a Python equivalent of selenuim as a module?
Task: write a Python program that will open sites through the built-in browser on QWebEngineView, parse the content, and interact with them. I don't want to use Selenium, as it opens a separate browser and requires more complex installation.
I found a way how to pull data from an open page using JS launch:
def callback_function(html):
print(setText(html))
def on_load_finished():
browser.page().runJavaScript("""
document.getElementsByClassName('class_name')[0].innerHTML
""", callback_function)
browser.loadFinished.connect(on_load_finished)
Answer the question
In order to leave comments, you need to log in
No.
Open the dev tools of the browser, see what requests load the content you need and repeat them in the script.
For such tasks, a browser is not needed at all.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question