emre-gon / Selenium.WebDriver.UndetectedChromeDriver

GNU General Public License v3.0
62 stars 18 forks source link

ChromeDriver is assuming that Chrome has crashed #25

Open jenokizm opened 1 year ago

jenokizm commented 1 year ago

Hello, I am getting this error when I run it

cherr

System: Windows 10 Google Chrome 116 Selenium.WebDriver.UndetectedChromeDriver 2.3.0 on net6.0 console app

spikeruk commented 12 months ago

Same issue here Did you find a fix?

jenokizm commented 11 months ago

Did you find a fix?

Google changed the driver download addresses. There is no solution until the author updates the library. I've switched to Python for now, it works there

spikeruk commented 11 months ago

Thanks I got it working by using https://github.com/fysh711426/UndetectedChromeDriver/tree/master

var driver = UndetectedChromeDriver.Create(driverExecutablePath: await new ChromeDriverInstaller().Auto()); driver.GoToUrl("https://www.google.com"); driver.Dispose();