Home > front end >  Python Selenium can't click on button in a pop up
Python Selenium can't click on button in a pop up

Time:10-03

I am playing around with selenium on enter image description here

That site containing several JavaScript scripts making the page loading time long, so I added a special settings to driver not to wait for it.
This is what

caps = DesiredCapabilities().CHROME
caps["pageLoadStrategy"] = "eager"

coming for

  • Related