sebdelsol

Results 170 comments of sebdelsol

> how do you use seleniumwire with uc? Please find the relevant code to do that [**here**](https://github.com/wkeeling/selenium-wire#bot-detection). EDIT : please close this issue, _it has nothing to do with UC._

> My chrome & chromedriver versions match Sure but this kind of issue is often due to a main version mismatch between the driver and the browser : You'll see...

- Added an one-liner fix for `find_chrome_executable()` failing on x86 Windows #505

* I've added some _basic_ headless evasions that handles `window.chrome`, `permissions`, `connection.rtt`. All those were useful addition for evading detection in headless mode with my pet project. Anyway, I believe...

have you tried [Selenium Chrome Proxy Authentication](https://stackoverflow.com/a/55582859/3692322) ?

```python3 options = uc.ChromeOptions() prefs = {"profile.default_content_settings.geolocation": 2} options.add_experimental_option("prefs", prefs) options.add_argument("--deny-permission-prompts") driver = uc.Chrome(options=options) ``` It's possible it doesn't works since there's a bug in the 'prefs' experimental options that...

@JulesSoulfly that's a very handy solution. But some site might detect you with [TLS fingerprinting](https://github.com/wkeeling/selenium-wire/issues/427#issuecomment-950289962). The solution is to [create and add an extension](https://github.com/wkeeling/selenium-wire/issues/503#issuecomment-1031297044) on the fly.

`pip install git+https://github.com/sebdelsol/undetected-chromedriver@master` You can now open an issue