sebdelsol

Results 170 comments of sebdelsol

- Selenium-wire is great but it can't shield against [TLS fingerprinting](https://httptoolkit.tech/blog/tls-fingerprinting-node-js/), check [here](https://github.com/ultrafunkamsterdam/undetected-chromedriver/issues/536#issuecomment-1063991852) for alternative solution to setup a proxy. - If you use headless Chrome you might be detected...

Have you tried without proxies ? To login with the same credentials with different IPs is very suspicious especially if the site you visit has found a way to fingerprint...

Here's a way to make it work: - use `--load-extension` command line switch since it's forwarded to the Chrome process - use a directory instead of a zip, Chrome seems...

That’s why you should use explicit waits. With all those threads spawning browsers you end up having to wait sometime longer to get the elements you’re looking for and will...

Your code works as expected : - `perform()` doesn't reset the action chains, you would have to call `reset_actions()` for that. - Without resets each `perform()` executes all previous actions...

how do you load extensions ? do you use [`--load-extension`](https://peter.sh/experiments/chromium-command-line-switches/#load-extension) ?

In your code each `options.add_argument("--load-extension=...")` overwrite the previous one. According to the [documentation](https://peter.sh/experiments/chromium-command-line-switches/#load-extension), you have to specify a **comma-separated list of paths to extensions to load at startup**, Try `options.add_argument(r"--load-extension=H:\extension\active,H:\extension\defender,H:\extension\webrtc")`

if you use headless, try #558 (I've added basic known headless evasions to the fixes and those work for me)

Ok sure what’s your issue ? Please post some code to reproduce what’s happening.

use [this Chrome comand line switch](https://peter.sh/experiments/chromium-command-line-switches/#user-agent) ```python options = uc.ChromeOptions() options.add_argument(f"--user-agent={wanted_user_agent}") ```