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
0
votes
0 answers

ERR_TUNNEL_CONNECTION_FAILED error when using proxies

I am currently using seleniumwire and IPRoyal to access the page. My page works fine for cetain website but when accessing certain webpage, I am getting the error below: selenium.common.exceptions.WebDriverException: Message: unknown error:…
0
votes
0 answers

how to set experimental options on undetected chromedriver in selenium python?

whenever I run this code .. import undetected_chromedriver as uc from selenium.webdriver.support.ui import Select from webdriver_manager.chrome import ChromeDriverManager from selenium import webdriver from selenium.webdriver.chrome.service import…
0
votes
0 answers

Selenium options.add_argument() function problem

My problem is the options.add_argument function for some reason when ever I add it it gives an error and when ever I remove the options.add_argument the code works correctly,I do not know if the problem is with options.add_argument function itself…
0
votes
0 answers

How can I get the Console Content for each individual Chrome Tab with Selenium

I'm trying to get the content of each Chrome tab's console individually. Here's what I've already tried: capabilities["goog:loggingPrefs"] = {"browser": "ALL"} # Get the current Chrome window handle current_window_handle =…
0
votes
0 answers

Stale element reference from Selenium on code that was already executed

while trying to scrap some infos on live nba games I encounter a stale reference, nothing particular yet since it is my first scrapping project but it looks pretty complex though, like the error could come from code previously executed. Some context…
0
votes
0 answers

How to bypass Cloudflare detection using selenium wihtout undetected_chromdriver

I need to make an automated website clicker that uses cludflare detection. But I can't use undetected_chromedriver because of a problem with using the Google browser extension that I need to implement the view. Ive already tried set the additional…
Ayvengo
  • 3
  • 1
  • 2
0
votes
1 answer

Finding an element within iframes on a webpage, py + undetected_chromedriver

I want to write a method that can help me locate an element on a webpage that contains multiple iframes. Currently, I have to manually search through these iframes every time I need to find a specific element. I want to automate this process so that…
0
votes
0 answers

How can ı solve this python selennium problem?

from selenium import webdriver driver = webdriver.Chrome() url_1 = "https://imdb.com" driver.get(url_1) İt's super easy code but it does not work ı get DevTools listening on…
0
votes
0 answers

Changing IP with Windscribe's Chrome extension makes selenium-wire with undetected_chromedriver to stop tracking requests

First of all I need to track requests, because some sites which I need to process are hiding their real domain by immediately redirecting to fake domain. To accomplish that I've chosen selenium-wire (if there are better options to do that please let…
0
votes
0 answers

undetected-chromedriver can't get url

I try to use undetected-chromedriver with a sample example (I also checked the example in github).I use chromedriver v110 This code give doesn't work with uc but with selenium it works: import undetected_chromedriver as uc driver =…
0
votes
1 answer

Not able to get undetected-chromedriver.exe download file

Not able to get undetected-chromedriver.exe download file I am using undetected-chromedriver in Python. I have installed undetected-chromedriver using pip install undetected-chromedriver Below is my code import undetected_chromedriver as uc driver =…
0
votes
0 answers

Selenium/Undectected Chromedriver/ missing after argument list

I'm new in web-scrapin and I'm trying to set up an automation, but i've been having problems with Shein's anti-bot (cloudflare), i've searched about it and saw that the lib undectected_chromedriver would works, but when I replace my driver =…
0
votes
1 answer

Multithreaded Selenium Bot does not work correctly

I wrote a bot in C#, I used Selenium. Problem: When I start more threads at same time, the bot does the work in the first window. All of the e-mail addresses are being added to the "E-mail" textbox in the same window instead of one e-mail address…
0
votes
1 answer

how to change proxy every 5min by extension automatically?

How to use proxy extension to change proxy after sometimes in selenium python ? Currently I am using this code to add proxy by the help of an extension.But now need to modify this to change proxy after sometimes multiple time.I want to convert this…
0
votes
2 answers

How to add proxy with auth to ubdetected chromdriver?

I have to use undetected chromdriver for some websites, but I also need to add a proxy with authorization. The usual ways that work with regular chromdriver don't work with undetected. What I have tried: 1: from seleniumwire import webdriver import…