0

Hello I am getting into requests_html and trying to render Javascript though it does not seem to process correctly. Very simple script, I added a sleep to see if it would render though still the same issue, here is the code.

from requests_html import HTMLSession

requests = HTMLSession()

requests.get('https://google.com')
requests.html.render(sleep=2)

1 Answer 1

1

I don't think that's how it works, I can only get it it work when I save the response to a varaible:

from requests_html import HTMLSession

requests = HTMLSession()

resp = requests.get('https://www.google.com')
resp.html.render(sleep=2)

print(resp.text)
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.