Questions tagged [undetected-chromedriver]

undetected-chromedriver is an optimized selenium.webdriver.Chrome drop-in, to prevent being triggered by anti-bot services like Distil / CloudFlare / Imperva / DataDome and such. main classes: Chrome, ChromeOptions

undetected-chromedriver

undetected_chromedriver is an optimized Selenium Chromedriver patch which does not trigger anti-bot services like Distill Network / Imperva / DataDome / Botprotect.io Automatically downloads the driver binary and patches it.

237 questions
-1
votes
1 answer

Why can't chromedriver 117 support Chrome 117?

I'm trying to execute selenium to do some web scrapping. I'm trying to use the chrome & chromedriver 117, which are available for download here. But when I try to execute the script, I get the following error: ERROR - Message: unknown error: cannot…
-1
votes
1 answer

Can't go past Cloudflare's verify you are human check even after clicking the check box multiple times when using Selenium

I am unable to get past this check. Even though I click it goes back to this state. I tried using: Browsers data and profile so that all the history, cookie and cache is present but still Without using profile and data By running Chromium browser…
-1
votes
1 answer

selenium doesn't find any element

I can't interfere with any element on this site. Could you help ? Thank you very much for your answers in advance. https://pttws.ptt.gov.tr/info_web/info_kayit.jsp driver = webdriver.Chrome() …
-1
votes
1 answer

How to open the site https://gem.gov.in/ with Python Selenium using undetected_chromedriver

I need to open this website https://gem.gov.in/ with Python Selenium I have tried to do it this way: import undetected_chromedriver as uc import time driver =…
-1
votes
2 answers

Powershell Patching Chromedriver.exe file becomes unusable

So if i replace the cdc strings theres about 9 occurances of them in total with Notepad++ etc it works fine. But for some reason my powershell code makes the file unusable. It replaces the strings but its not longer able to…
C0nw0nk
  • 870
  • 2
  • 13
  • 29
-1
votes
1 answer

stop undetected chromedriver from littering the Userdata folder

by using the code below the UserData-dir gets bigger and bigger with every launch, is there any fix for this? i understand that undetected chromedriver downloads from every launch new but shouldnt it replace the data instead of just putting it in…
-1
votes
1 answer

selenium: find element not working (should be quick, so plz help)

trying to click on "i accept" button but doesn't work import time import undetected_chromedriver as uc import selenium def login_Undetected(): driver = uc.Chrome() driver.get('https://krunker.io/') time.sleep(4) …
-1
votes
1 answer

The listener for function 'Functions.trigger' was unable to start? while running Azure function locally

Error while during local run: The listener for function 'Functions.trigger' was unable to start. Azure.Core: Retry failed after 6 tries. Retry settings can be adjusted in ClientOptions.Retry. (nodename nor servname provided, or not known…
Amith
  • 73
  • 1
  • 10
-1
votes
1 answer

Unable to start chrome process in .NET C# application

I am getting error on Selenium and unable to start chrome process. I am using Google Chrome Version 96.0.4664.45 (64-bit) and Selenium Web Driver 3.141.0 ChromeOptions chromeOptions = new ChromeOptions { BinaryLocation = "C:\\Program Files…
K.Z
  • 5,201
  • 25
  • 104
  • 240
-1
votes
1 answer

How to use undetected_chromedriver.v2 in kali linux

How to use undetected_chromedriver.v2 in kali linux import undetected_chromedriver.v2 as uc options = uc.ChromeOptions() # setting profile options.user_data_dir = "c:\\temp\\profile" # another way to set profile is the below (which takes…
-1
votes
3 answers

Chromedriver not getting detected in python

I am Trying to run a selenium script but it is not able to detect the chromedriver can anyone please help me on this when i try to run it it gives me an error stating that chromedriver is not present in the specific path however i have downloaded…
-2
votes
0 answers

make ChromeDriver with non-static information

some websites knows that I came before and I came again.. there is static and special variables in driver that detecting me. I changing the user-agent but still..(also IP) I think that using WebGL or some thing like that, that have special id for…
1 2 3
15
16