Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Selenium Chromedriver not navigating to url

What I have now is:

chrome_options = Options()
chrome_options.add_extension(r"C:\Users\x\OneDrive\Desktop\pp\crxSolver.crx")
driver = webdriver.Chrome(r'C:\Users\x\OneDrive\Desktop\chromedriver.exe', options=chrome_options)
driver.get("https://www.google.com")

I am able to open the webdriver and I see the extension that I added on the right top corner in google Chrome, however the driver doesn't go to google.com. I have searched a lot and I can't find the solution to it.

Here is the link to the extension: https://chrome.google.com/webstore/detail/buster-captcha-solver-for/mpbjkejclgfgadiemmefgebjfooflfhl/related

Watch the video here for complete information

like image 717
Number70 Avatar asked May 16 '19 08:05

Number70


People also ask

How do I change ChromeDriver path?

Go to the terminal and type the command: sudo nano /etc/paths. Enter the password. At the bottom of the file, add the path of your ChromeDriver. Type Y to save.

What is Webdrivermanager ChromeDriver () setup ()?

chromedriver(). setup: checks for the latest version of the specified WebDriver binary. If the binaries are not present on the machine, then it will download the WebDriver binaries. Next, it instantiates the Selenium WebDriver instance with the ChromeDriver.


1 Answers

Try upgrading to chrome 75, your issue should resolve. Seems to be some issue with the machine and your browser compatibility.

like image 193
supputuri Avatar answered Oct 12 '22 20:10

supputuri