'Undetected-Chromedriver Close Chrome Automatically After Few Seconds
I'm using:
Python 3.9
Chrome 93.0.4577.63
ChromeDriver 93.0.4577.15
Undetected-Chromedriver 3.0.3
Windows 10
I use the most simple code to open Chrome:
import undetected_chromedriver.v2 as uc
driver = uc.Chrome ()
with driver:
driver.get ('https://www.google.com/')
When Chrome is opened, in the up-right corner there is a message of Error, when I click on it says, New Extension Added, (Another program on your computer has added an extension that can change how Chrome works) After a few seconds Chrome is closed automatically
Anybody know that cause it and what it's the solution?
Thank you for your answer.
Solution 1:[1]
Is's simple your code just end after get google.com Add sleep or cycle with key for interupt.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Nomoos |
