Opening more than 9 sessions with Selenium
问题 I am trying to use Selenium to visit a website with a few dozen sessions at a time, but whenever I try and setup more than 9 sessions, it says "chromedriver.exe is not responding" and the sessions start closing themselves. Here is my code: from selenium import webdriver import time url = "website URL" amount = 36 def generateBrowsers(): for x in range(0, amount): driver = webdriver.Chrome(executable_path="C:/Users/user/Documents/chromedriver_win32/chromedriver.exe") driver.get(url) time.sleep