Number70
Number70

Reputation: 453

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

Upvotes: 10

Views: 2023

Answers (1)

supputuri
supputuri

Reputation: 14135

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

Upvotes: 5

Related Questions