sebdelsol
sebdelsol
Please try : ````python3 driver = uc.Chrome(version_main=102) ````
You'll want to use [**selenium-wire for that**](https://github.com/wkeeling/selenium-wire#intercepting-requests-and-responses). Please check here how to use [**undetected-chromedriver with selenium-wire**](https://github.com/wkeeling/selenium-wire#bot-detection).
Thanks @QuentiumYT This works on Linux (and Mac ??). On **Windows** it's a little more convoluted : ```python3 # Windows only... pywin32 needed : pip install pywin32 from win32api import...
You want to replace undetected-chromedriver by another driver that will be detected. I don't understand how that's a good idea ?
Using an old version isn't a good idea if you want to avoid detection. The solution to your issue is actually in the exception message. If you want a fix...
@mechxer > Also can you help me how to hide the console with compiled version for undetected chromedriver > i tried chrome_service.creationflags = CREATE_NO_WINDOW but it doesn't worked for me,...
@Jancs-E **`'prefs'` experimental options works fine**, but according to your error message you've messed up the `desired_capabilities`, Why would you want to change the default working ones !? ```python3 prefs...
@snehalwagh : there's no `ChromeOptions.path` attribute, maybe you're talking about `ChromeOptions.user_data_dir` ? In this case you're right, Chrome can't have shared _running_ profile.
It's very likely a duplicate of #572 which has been resolved (this was not a bug btw). Please check that your undetected-chromedriver package and your Chrome are both correctly updated.
Sure please create a pull request for that. Good luck having the author merge it. In this case _the solution is literally given in the error_, and if you want...