[Fixed] Python Selenium consume 100% CPU in Windows

Issue

Using driver.quite() leads windows interrupts controller to use 100% of CPU

Solution

Remove driver.quite() statements in your Python Selenium Program. Consider using

driver.close()

Instead of

driver.quite()

Leave a Reply

(*) Required, Your email will not be published