0

I want to know if there is a response from requests.get(url) when the page is fully loaded. I did tests with around 200 refreshes of my page and it happens randomly that once or twice the page does not load the footer.

Wai Ha Lee
  • 8,598
  • 83
  • 57
  • 92
syedelec
  • 1,285
  • 2
  • 19
  • 30

1 Answers1

0

First requests GET will return you the entire page but requests is no a browser, it does not parse the content. When you load a page with the browser, it does usually 10-50 requests for each resource, runs the JavaScript, ....

sorin
  • 161,544
  • 178
  • 535
  • 806