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
3
votes
1 answer

how to click on pop up elements using undetected chromedriver

i am trying to make 5-star bot i have already done half work for getting login with gmail only place i am stuck is when it come to clicking on pop up window asking for starts and writing review i can't even click on cancel button.The pop up appears…
3
votes
0 answers

Has anyone gotten Selenium Undetected ChromeDriver to work on a raspberry pi?

Cant get Selenium Undetected ChromeDriver working on my raspberry pi. All googling I've done suggests there's no luck I have tried installing the latest chromium version & installing older versions of undetected chromedriver
3
votes
1 answer

Cannot login using Google Authentication in headless mode for undetected chromedriver in Python

This my python code to login into Google from seleniumwire.undetected_chromedriver.v2 import Chrome, ChromeOptions from selenium.webdriver.common.by import By from selenium.webdriver.support.ui import WebDriverWait from selenium.webdriver.support…
maciejka
  • 818
  • 2
  • 17
  • 42
3
votes
3 answers

How to prevent undetected chromedriver from closing window after last line of code

I am using the undetected chromedriver in python selenium, my problem is that it always closes the window after ending the program. For example I have a line of code like: driver.get('www.google.com') It obviously opens google but then immediately…
3
votes
0 answers

selenium.common.exceptions.WebDriverException: Message: chrome not reachable (Session info: chrome=88.0.4324.150)

Despite using compatible google chrome and chromedriver version, I recieve this error when trying to use Selenium with Python. What could be going on? I'm using: Selenium: 3.141.0 Google Chrome: 88.0.4324.150 Chromedriver: 88.0.4324.96 When I…
2
votes
2 answers

Undetected Chromedriver not using most recent chromedriver for my browser

I am having some issue getting my undetected_chromedriver to be on version Chromium: 116.0.5845.96. This issue just started today I have tried nearly everything I can think of, from reinstalling the module, to reinstalling the browsers, and even…
Vin
  • 69
  • 6
2
votes
3 answers

Undetected chromedriver not working with selenium 4.10

Just upgraded to selenium 4.10 and got: TypeError: init() got an unexpected keyword argument 'executable_path' I read that executable path not needed in latest version and the fix is: from selenium.webdriver.chrome.service import Service service =…
2
votes
0 answers

Undetected_chromedriver + Seleniumwire together

I used to work with "seleniumwire" because I was comfortable getting "requests" from "driver". Now the situation has changed and I need to use "undetected_chromedriver", but as you know, this library does not support "requests" at the moment. I know…
2
votes
2 answers

Undetected Chromedriver Alternative

I am unable to run Undetected Chromedriver on Linux (Windows works fine). I am getting a timeout from renderer error and despite catching this error, UC hangs and the browser becomes unresponsive. Since I am unable to debug this, I want an…
2
votes
1 answer

Cannot reach the site when using selenium with proxy

When i try to access a random website via undetected-chromedriver with proxy configured. Using the code below: from time import sleep import json import undetected_chromedriver as webdriver from selenium.webdriver.chromium.service import…
2
votes
0 answers

How undetected-chromedriver change proxy?

How undetected-chromedriver change proxy? I need use it to crawl some webpages, and I want to make it one page, one proxy. any advice would be appreciated!
何子洋
  • 47
  • 6
2
votes
2 answers

Service chromedriver unexpectedly exited. Status code was: 1

I was running this code in Google Colab, it was working fine but suddenly got this error with chromedriver. I am new to python webscrapping. Error: WebDriverException Traceback (most recent call…
2
votes
1 answer

undetected_chromedriver add a plugin

I want to add a plugin to the undetected_chromedriver driver, just like in google chrome. I did some research and tried to add it with a crx file, but I could not succeed. can you help me with this. codes i…
2
votes
0 answers

Error while scraping using undetected chromedriver

I'm tyring to download memes given a url from 9gag. I've been using the same code below for a while now and everything was working good. Recently since few weeks it's been throwing an error and I can't understand how to resolve it. from urllib…
2
votes
0 answers

Undetected chromedriver keeps crashing on Replit?

On Replit normal selenium works fine but undetected chromedriver (the python library) doesn't seem to work, here's my code: import undetected_chromedriver as uc driver = uc.Chrome() driver.get('https://google.com') I keep getting this…
1
2
3
15 16