bluemangofunk

Results 4 comments of bluemangofunk

Who is detecting you? They may detect your IP. They be doing TLS fingerprint which is happening more and more ``` "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko)...

> @usr741852 May I ask you how you pass the cookies in set_all(), please? I haven't been able to add any cookie using this function, even making the changes that...

yes, but there is a bug in the code that you need to fix in order for the cookies to work, you can see the issue: https://github.com/ultrafunkamsterdam/undetected-chromedriver/issues/1816 ``` await browser.cookies.set_all(cookies)...

> use get combined with asyncio to allow adding a timeout for the operation like below: await asyncio.wait_for(browser.get(url), timeout=120) cheers, thank you very much. I'll try this out 👍