Home > Blockchain >  Python selenium gets stuck on site loading screen
Python selenium gets stuck on site loading screen

Time:06-15

First of all, this is the enter image description here

stays on this screen.

I think there is a bot block on the site, but I have no idea how to bypass it.

CodePudding user response:

I would suggest you explore the following code:

import time
time.sleep(1) #sleep for 1 sec
time.sleep(0.25) #sleep for 250 milliseconds
  • Related