How to resolve Chrome Driver version access failure?

How can I resolve this error that is occurring when running a web test with robot framework?
(note: I updated the chrome drive, made changes to the firewall and proxy, and it still didn’t work)
Exception when trying to find out the chromedriver version: error sending URL request (https://googlechromelabs.github.io/chrome-for-testing/known-good-versions-with-downloads.json): error trying to connect: tcp connection error: A connection attempt failed because the connected component did not respond
correctly after a period of time or the connection failed
because the host not connected. (OS error 10060)

I managed to solve it: I carried out the version checks, and the Selenium version was different, I updated it to version 4.6.0 and it worked.

Operating system
check info command: Micro >> System /coconfiguration
→ Windows 10 64 bits

Selenium version
check info command: pip show selenium
command to update: pip install selenium==4.6.0
→ 4.6.0

Version and browser
check info command: reg query “HKEY_CURRENT_USER\Software\Google\Chrome\BLBeacon” /v version
→ 130.0.6723.92 Chrome

ChromeDriver version
check info command: chromedriver --version
→ 130.0.6723.91

1 Like