sebdelsol

Results 170 comments of sebdelsol

If you have your own fork you can merge #558 that should fix the corrupted Default/Preferences

@17ss : the code you've commented removes the restore pop up. If you want to keep this code, then add `fs.truncate()` just after [` json.dump(config, fs)`](https://github.com/ultrafunkamsterdam/undetected-chromedriver/blob/b2e804e977c9cf3dd9c845474752cac142a72508/undetected_chromedriver/__init__.py#L377) that should do the...

I can't reproduce your issue even with an extension loaded... This error is thrown when you try to open Chrome _with a profile already in use_... have you checked you're...

That would be the _exact same code_ since the new version handles `'prefs'` _experimental options_. And you would get rid of this nagging popup : I tried and it works...

@wazoooo you're right you actually need all three to get rid of this nagging password popup : ```python3 options = uc.ChromeOptions() options.add_argument("--password-store=basic") options.add_experimental_option( "prefs", { "credentials_enable_service": False, "profile.password_manager_enabled": False, },...

It probably means your chromedriver has crashed. Without any code or context it could be anything. We might help **only** if you post some code to reproduce what’s happening with...

Indeed this specific version isn't [available](https://chromedriver.storage.googleapis.com/99.0.4844.82/chromedriver_win32.zip) whatever the OS. It's weird that https://chromedriver.storage.googleapis.com/LATEST_RELEASE returned this version number. I guess this has been resolved quickly.

What https://chromedriver.storage.googleapis.com/LATEST_RELEASE returns on your system?

* Please retry your script with the logger set to debug `logging.basicConfig(level=logging.DEBUG)` and check what url is given in the _"downloading from ..."_ message. What's the url ? * I...

Sorry I didn't see you were on Cygwin and I'm not familiar with it... I'm really not sure it'll works on Cygwin. I guess you have a built of Chromium...