You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i fixed the issue by changing the line 64 in CodeForcesScrapper file
driver = webdriver.Chrome(ChromeDriverManager().install(), options=options)
by these two lines :
option = webdriver.ChromeOptions()
driver = webdriver.Chrome(options = option)
Or also try to use another browser like edge instead of chrome
The text was updated successfully, but these errors were encountered: