sebdelsol
sebdelsol
Your env is broken... Are you sure you used the exact same script as provided ? **This site seems barely protected** : I just scrapped again those 1000 items and...
Please check the multiprocessing documentation for `freeze_support()` [**here**](https://docs.python.org/3/library/multiprocessing.html#multiprocessing.freeze_support).
@colbyhill21 does `freeze_support()` fix your issue ? ```python3 from multiprocessing import freeze_support import undetected_chromedriver as uc if __name__ == '__main__': # Add support for when a program which uses multiprocessing...
I have tried both links you provided _on a regular Chrome browser_ and they both lands on the Cloudflare page with this captcha :  So you'll have to wait...
Each time you instantiate a driver a temp profile folder is created for this sessions, cookies and cache **are deleted** when you `quit()` it. If you specify a `user_data_dir` then...
Except it works like a charm for me... Your IP (or profile) has very probably been flagged. Please be aware that undetected-chromedriver won't prevent sites detecting _your script behaving like...
You're on the **wrong repo**, Please check the existing issues on **[the relevant repo](https://github.com/wkeeling/selenium-wire/issues?q=is%3Aissue+invalid+certificate)**.
Sure, note that you have some alternative for [**_proxies with authentication_**](https://github.com/ultrafunkamsterdam/undetected-chromedriver/issues/639#issuecomment-1133890051).
Try this subclass of `uc.Chrome()` instead, it works fine for me to fool the js timings detection : ```python3 import undetected_chromedriver as uc class Chrome(uc.Chrome): def get(self, url): self.execute_cdp_cmd("Page.addScriptToEvaluateOnNewDocument", {"source":...
`binary_location` argument specify the browser path not the driver path. * Please read the `uc.Chrome()` docstring. * Please show some code to reproduce your issue.