sebdelsol

Results 170 comments of sebdelsol

It works perfectly with undetected-chromedriver too : I use multi-thread a lot without any issues. **Please stick to best practices for bugs reporting** : you're supposed to show the **_minimum_...

Please check [**this possible solution**](https://github.com/ultrafunkamsterdam/undetected-chromedriver/issues/693#issuecomment-1176409742).

That won't work in headless, see #777. So you can use the cdp to clear browser [**cache**](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-clearBrowserCache) and [**cookies**](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-clearBrowserCookies) : ```python3 driver.execute_cdp_cmd("Network.clearBrowserCache", {}) driver.execute_cdp_cmd("Network.clearBrowserCookies", {}) ```

You can't prevent a server from [locating your IP](https://geotargetly.com/my-ip-geolocation). By the way using a VPN is often a bad idea since they tend to be flagged as suspicious by a...

So you want to **enable** the location : * `prefs = {"profile.default_content_settings.geolocation": 1}` * and remove `options.add_argument("--deny-permission-prompts")`

Ok so there’s a discrepancy between your IP location and something else that hints at your actual location… have you tried to change your Chrome language to reflect your spoofed...

I don't know, do you have a very **_simple_** use case to trigger your issue ?

@hulitolku , what do you mean it doesn't work ?

I still don't understand, could you please show some code and what's you're trying to achieve ?

You don't need to click "allow" if it's already allowed ?