ChromeDriver 115.0.5790.171 (64-bits)

20,924 views
Skip to first unread message

jd....@yucom.be

unread,
Aug 2, 2023, 8:43:12 PM8/2/23
to ChromeDriver Users
Hi, Google Chrome has been automatically updated to version 115.0.5790.171 (64-bits). Where can I find the ChromeDriver for this version?

Mathias Bynens

unread,
Aug 3, 2023, 2:58:07 AM8/3/23
to jd....@yucom.be, ChromeDriver Users

On Thu, Aug 3, 2023 at 2:43 AM jd....@yucom.be <jd....@yucom.be> wrote:
Hi, Google Chrome has been automatically updated to version 115.0.5790.171 (64-bits). Where can I find the ChromeDriver for this version?

--
You received this message because you are subscribed to the Google Groups "ChromeDriver Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to chromedriver-us...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/chromedriver-users/dffd332e-c3d8-4303-8e55-ada41a3fc7f2n%40googlegroups.com.

jd....@yucom.be

unread,
Aug 3, 2023, 6:32:54 AM8/3/23
to ChromeDriver Users
I can't find the ChromeDriver 115.0.5790.171 (64-bits) via your link. Only the ChromeDriver 115.0.5790.170 (64-bits) is listed.

Op donderdag 3 augustus 2023 om 08:58:07 UTC+2 schreef Mathias Bynens:

SAMIR ABBOUD

unread,
Aug 3, 2023, 2:34:18 PM8/3/23
to ChromeDriver Users
Hi,  I Have the same issue And I can't find the ChromeDriver for the version 115.0.5790.171, any solution!

Aleksandr Vasilev

unread,
Aug 3, 2023, 11:10:14 PM8/3/23
to ChromeDriver Users
I can't find it either

пятница, 4 августа 2023 г. в 03:34:18 UTC+9, SAMIR ABBOUD:

Mathias Bynens

unread,
Aug 4, 2023, 1:26:15 AM8/4/23
to Aleksandr Vasilev, ChromeDriver Users

Gilles Hoeltzel

unread,
Aug 4, 2023, 11:01:16 AM8/4/23
to ChromeDriver Users
instructions ?

Einar Saugen

unread,
Aug 4, 2023, 11:25:30 AM8/4/23
to ChromeDriver Users
I have the same issue:  my Chrome browsers are 115.0.5790.171, but the closest matching ChromeDriver version is  115.0.5790.170

Using the chromedriver googleapis url pre Chrome 115, I could automate the driver updates by requesting the recommended driver version number for chrome, and then download that version.

For this new Chrome-For-Testing setup, you say that each chrome version should have a chromedriver with a corresponding version number.
Thus I would expect, that if my scripts finds that I have Chrome version X.Y.Z, I could download the corresponding chromedriver from https://edgedl.me.gvt1.com/edgedl/chrome/chrome-for-testing/X.Y.Z/win64/chromedriver-win64.zip

Is there any endpoint I could query, to get the excact chromedriver version number recommended for a specific chrome version (or major version)?

Abu Shaid

unread,
Aug 4, 2023, 12:48:22 PM8/4/23
to ChromeDriver Users

i have same problem.

Jose Diaz

unread,
Aug 4, 2023, 2:01:25 PM8/4/23
to ChromeDriver Users
You can use this:

1. sudo apt --only-upgrade install google-chrome-stable. 

google-chrome --version
Google Chrome 115.0.5790.170


3.  unzip -o /tmp/chromedriver-linux64.zip

4. sudo /tmp/chromedriver-linux64/chromedriver /usr/bin

5. chmod 755 /usr/bin/chromedriver
 

6. chromedriver --version

ChromeDriver 115.0.5790.170 (cc0d30c2ca5577520c8646671513241faa0bc105-refs/branch-heads/5790@{#1923})


Enjoy!

Joe

王溆瑄

unread,
Aug 6, 2023, 7:07:38 AM8/6/23
to ChromeDriver Users
I try your method in windows 10 . But it does not work. Is there an alternative way? thank you
Message has been deleted

Mathias Bynens

unread,
Aug 7, 2023, 8:01:49 AM8/7/23
to Einar Saugen, ChromeDriver Users
No similar option to request the latest recommendede driver available for download from 115 on...

That similar option does exist: https://chromedriver.chromium.org/downloads/version-selection (TL;DR use the latest-patch-versions-per-build JSON endpoints.)

On Mon, Aug 7, 2023 at 1:58 PM Einar Saugen <einar....@visma.com> wrote:
That script works if you find a driver version number at https:/edgedl.../chrome-for-testing ... that matches excactly the version number of your Chrome browser.

But when my update script detects I have Chrome version 115.0.5790.171 running on my test computers,  "https://edgedl.me.gvt1.com/edgedl/chrome/chrome-for-testing/115.0.5790.171/win64/chromedriver-win64.zip" will not find any driver...

Problem is there are so many different sub versions of Chrome 115, but the Chrome-For-Testing site only offers download of the .170 driver version...

Rahul Ranjan

unread,
Aug 7, 2023, 10:02:39 AM8/7/23
to ChromeDriver Users
Hello
I am facing the same issue, 
Can you please tell me elaborate steps , I am a beginner
Thanks

Thomas Eeles

unread,
Aug 7, 2023, 10:11:57 AM8/7/23
to ChromeDriver Users
My scripts pull the latest version of chrome and send to the endpoint - same as a few people on here with 171 not existing.

Before I change all my scripts - is there a stable 171 release upcoming and any time frame?

Einar Saugen

unread,
Aug 7, 2023, 1:12:23 PM8/7/23
to ChromeDriver Users
 | Mathias Bynens wrote:
 |   That similar option does exist: https://chromedriver.chromium.org/downloads/version-selection (TL;DR use the latest-patch-versions-per-build JSON endpoints.)

This option will only give me the latest recommended driver for the current stable release, plus the Beta/Dev/Canary releases.
It will not give me the recommended driver for an earlier release of Chrome...

Chrome auto-updates at different times & frequence at different servers.
Some of my test servers will still be with Chrome 115 some days (weeks?) after Chrome 116 becomes the latest stable release.

How can I query for the recommended driver for Chrome 115 after it is removed from this list of latest Stable/Beta/Dev/Canary releases?

With the previous setup at  https:/chromedriver.storage.googleapis.com, I could find (& download) the best recommended driver version for any Chrome version

Einar Saugen

unread,
Aug 7, 2023, 1:25:45 PM8/7/23
to ChromeDriver Users
@Mathias Bynens:
Could it be that the endpoint links at  https://chromedriver.chromium.org/downloads/version-selection  is not fully up to date?
The endpoint links, "CfT JSON endpoints" & "latest-patch-versions-per-build JSON endpoints", both points to the same endpoint at : https://googlechromelabs.github.io/chrome-for-testing/last-known-good-versions-with-downloads.json

Carlos Velloso Júnior

unread,
Aug 8, 2023, 11:30:15 AM8/8/23
to ChromeDriver Users
any news on this? same issue here

Justin Wagner

unread,
Aug 8, 2023, 5:48:55 PM8/8/23
to ChromeDriver Users
What they seem to be doing in v115+ is forcing us to use either the closest matching version of Chromedriver (using custom or third party tools as their webservice doesn't seem to work for v115+) or use only Chrome for Testing versions and their corresponding Chromedriver versions. For example, they will release a specific stable version of Chrome for Testing and the matching Chromedriver for that version but they don't seem to have either Chrome for Testing or Chromedriver releases for every version of Chrome being released to end users.

Fazal Rabbi

unread,
Aug 9, 2023, 1:14:15 AM8/9/23
to ChromeDriver Users
hi, Its fazal here i am unable to start my software as my software starts with whatsapp web and suddenly the erros show 'your chrome and chrome driver version are not same. Can you please released the latest chrome driver version ( 115.0.5790.171 ) to as my work stops from the last 2 days.

Mathias Bynens

unread,
Aug 9, 2023, 4:46:51 AM8/9/23
to Einar Saugen, ChromeDriver Users
Thanks Einar! The link to the overview of JSON API endpoints is https://github.com/GoogleChromeLabs/chrome-for-testing#json-api-endpoints.

How can I query for the recommended driver for Chrome 115 after it is removed from this list of latest Stable/Beta/Dev/Canary releases?

See the `latest-versions-per-milestone` JSON endpoints.

Mathias Bynens

unread,
Aug 9, 2023, 4:55:01 AM8/9/23
to Justin Wagner, ChromeDriver Users
On Tue, Aug 8, 2023 at 11:49 PM Justin Wagner <justin...@gmail.com> wrote:
What they seem to be doing in v115+ is forcing us to use either the closest matching version of Chromedriver (using custom or third party tools as their webservice doesn't seem to work for v115+)

As announced, the endpoints for downloads and version selection have changed with M115. Which web service isn’t working?

For example, they will release a specific stable version of Chrome for Testing and the matching Chromedriver for that version but they don't seem to have either Chrome for Testing or Chromedriver releases for every version of Chrome being released to end users.

Note that using the closest matching ChromeDriver version has always been necessary thus far — it’s not new with CfT. CfT removes the need for version selection if you adopt CfT for both the chrome + chromedriver binaries. If you don’t, then it still reduces the need for version selection as it greatly increases the number of available released versions. It’s true that some user-facing Chrome releases (e.g. Windows A/B testing builds) currently don’t yet get a corresponding CfT binary, and until we fix that, you can continue to apply Version Selection just like before, except using the new CfT endpoints.
 

Justin Wagner

unread,
Aug 9, 2023, 6:38:37 AM8/9/23
to ChromeDriver Users
On Wednesday, August 9, 2023 at 2:55:01 AM UTC-6 Mathias Bynens wrote:
Which web service isn’t working?

Prior to v115 I used the Chrome version info appended to the LATEST_RELEASE_ URL to find a corresponding Chromedriver version to download. Right now it appears that if you are using non-CfT v115+ you have to perform this search on your own using a JSON endpoint.

I really like the idea of CfT and have written my own tool to implement it in automated testing where I work. 

Faik Uygur

unread,
Aug 9, 2023, 7:15:23 AM8/9/23
to ChromeDriver Users
The original question asks for the chromedriver for 115.0.5790.171 version Mathias.

Have you checked the link you have shared? There is no .171 in any of those JSON links.

They are upgrading the Chrome version but chromedriver .171 is nowhere to find.

Only option here seems to be using the closest version.

Mathias Bynens

unread,
Aug 9, 2023, 7:21:32 AM8/9/23
to Faik Uygur, ChromeDriver Users

Faik Uygur

unread,
Aug 9, 2023, 7:47:39 AM8/9/23
to ChromeDriver Users


Mathias, yes, I have read that page as anyone here I believe. Can you point what I am missing?


We are trying to create an automated Chromedriver downloader by looking at the Chrome version of our users. If the version is below 115 we use the LATEST_RELEASE link as before, for 115 and above we use the version selection pages info.


For version 115.0.5790.171 particularly our software started failing again, because none of the version selection info, neither the dashboard here:

https://googlechromelabs.github.io/chrome-for-testing/


nor any of the JSON links here:

https://github.com/GoogleChromeLabs/chrome-for-testing#json-api-endpoints


has the .171 version of Chrome as a Stable release, and there are no links to Chromedriver for .171 exists.


In your announcement in May, you said:


"every Chrome release that gets pushed to users automatically gets a correspondingly-versioned ChromeDriver release"


So according to this info what we have done to update our software is to try to find the same Chrome version corresponding Chromedriver version. 


But with .171 our customers have started reporting bugs for our software not working because their Chrome is updated to 115.0.5790.171, and we can't find the corresponding Chromedriver, causing our auto-update to fail again.


Isn't 115.0.5790.171 a stable version? Why can't we find it anywhere in the version selection pages?


Or should we not look for the same chromedriver version and just use the latest Stable chromedriver version closest to the Chrome version in the dashboard Stable channel or the JSON links.


Thanks,

Justin Wagner

unread,
Aug 9, 2023, 8:40:58 AM8/9/23
to ChromeDriver Users
On Wednesday, August 9, 2023 at 5:47:39 AM UTC-6 Faik Uygur wrote:

Or should we not look for the same chromedriver version and just use the latest Stable chromedriver version closest to the Chrome version in the dashboard Stable channel or the JSON links.


What I did as a quick workaround was code a C# utility to use the known good versions JSON and grab the closest matching version to what we have installed as end users on our corporate machines. After I made that available to my automation team I built a new utility to grab the stable version of CfT and the corresponding chromedriver and use those instead of the locally installed version of Chrome, just in case we ever run into issues because of a mismatch.
 

Faik Uygur

unread,
Aug 9, 2023, 8:50:34 AM8/9/23
to ChromeDriver Users
Thank you Justin. We don't have the control over our users' machine for the Chrome version but will update our software to find the closest matching version as in your workaround and not the exact same version.
  

Mathias Bynens

unread,
Aug 9, 2023, 10:06:22 AM8/9/23
to Faik Uygur, ChromeDriver Users
Faik, per the instructions on the page, you take the version number 115.0.5790.171, then remove the PATCH version which leaves "115.0.5790", then look that up in the JSON endpoint it points to. https://googlechromelabs.github.io/chrome-for-testing/latest-patch-versions-per-build.json has the following entry:

"115.0.5790":{"version":"115.0.5790.170","revision":"1148114"}

That gives you the corresponding ChromeDriver version.


Faik Uygur

unread,
Aug 9, 2023, 10:25:59 AM8/9/23
to ChromeDriver Users
Mathias, thank you for the explanation and pointing this information, updating to do this now.

vasavi vema

unread,
Aug 9, 2023, 10:30:53 AM8/9/23
to Faik Uygur, ChromeDriver Users
still i was unable to run scripts because of chrome driver issue , Anyone have chromedriver for 115.0.5790.99 version.

vasavi vema

unread,
Aug 9, 2023, 10:37:30 AM8/9/23
to Faik Uygur, ChromeDriver Users
Any solution for that issue? I had used 115.0.5790.170 version web driver but no use its not working..

Srini G

unread,
Aug 11, 2023, 12:05:56 AM8/11/23
to ChromeDriver Users
Hi all,

Please check the Chromedriver download link section - For versions 115 and newer. It says that starting from version 115 onwards, Chrome+Chromedriver are bundled together. In fact for the win64 version, there is no chromedriver.exe, the entire Chrome (CfT )package is downloaded which has a chrome.exe. When you launch this exe, it displays the message "Chrome for Testing vXXX is only for automated testing. For regular browsing, use a standard version of Chrome that updates automatically" in a header.

From your automation script, you need to set your chrome options.binary with path to this exe and all works well.

So, looks like they are restricting browser automation to only testing purpose.

Thank you 🙏🏻

Mathias Bynens

unread,
Aug 11, 2023, 1:12:11 AM8/11/23
to Srini G, ChromeDriver Users
Srini, this is not the case. As the dashboard at https://googlechromelabs.github.io/chrome-for-testing/ shows, Chrome and ChromeDriver ZIP downloads are available per version. They are separate downloads and are not bundled in a single ZIP.

Vasiliy Ivashchenko

unread,
Aug 11, 2023, 3:07:32 AM8/11/23
to ChromeDriver Users
Hi!
I faced a similar problem.
I found a solution in downloading Chrome Dev (117.0.5938.0 (Official Build) dev (64-bit)) and downloaded chromedriver.exe on it.
It is also necessary to write to Chrome Dev.

Example code in Python:
from selenium import webdriver
from selenium.webdriver.chrome.service import Service
from selenium.webdriver.chrome.options import Options

chrome_dev_path = 'C:\Program Files\Google\Chrome Dev\Application\chrome.exe'
chrome_options = Options()
chrome_options.binary_location = chrome_dev_path
service = Service('chromedriver.exe')
driver = webdriver.Chrome(service=service, options=chrome_options)
пятница, 11 августа 2023 г. в 08:12:11 UTC+3, Mathias Bynens:

Don Leverton

unread,
Aug 11, 2023, 8:38:19 AM8/11/23
to Vasiliy Ivashchenko, ChromeDriver Users
Wow.
Firstly, thanks for the sample code.
Unfortunately… I’m a VBA guy, and don’t know Python or C#

This change seems to be causing EVERYONE a lot of problems!

My IT guys are in charge of updating browsers, and we humble peons are not allowed to make any changes in C:\Program Files to replace the CFT or ChromeDriver EXE’s

What I would like to see is that when the main Chrome browser version is updated, that the CfT and ChromeDriver be bundled and ALL gets updated and revised at the same time!

Colin Kwong

unread,
Aug 11, 2023, 10:01:51 PM8/11/23
to ChromeDriver Users

Your comment is no use, you even not bother to read the "instruction" yourself. This version is not found in https://googlechromelabs.github.io/chrome-for-testing/. Can Google keep the version of the Chrome and its Webdriver in sync? the version not match happens many times lately and cause a lot of issues for our production programs.

Saurabh Agarwal

unread,
Aug 12, 2023, 1:40:30 AM8/12/23
to ChromeDriver Users
Things have changed for better. we are being provided a browser and related chrome driver. We are not expected to use the regular installation of the chrome. Instead down a version from this page https://googlechromelabs.github.io/chrome-for-testing/ and use its chrome.exe.

Solution is very simple. https://googlechromelabs.github.io/chrome-for-testing/   is providing you a browser and related chromedriver. you must download the browser first and extract it in a folder. for example, I extracted it in C:\Program Files\Google\chrome-win64. You should also download the related chromedriver and extract and save it is some location. for example, I saved it in C:\Program Files (x86)\chromedriver.exe.

Now when this part is done, we need to tweak our python code to make the script use chrome.exe, instead of regular chrome installation. 
here is how I did it.

from selenium.webdriver.chrome.service import Service
from selenium.webdriver.chrome.options import Options

chrome_dev_path = 'C:\Program Files\Google\chrome-win64\chrome.exe'
chrome_options = Options()
chrome_options.binary_location = chrome_dev_path
service = Service('C:\Program Files (x86)\chromedriver.exe')

driver = webdriver.Chrome(service=service, options=chrome_options)


Now I don't have to worry about chromerdriver.exe getting outdated, since I am always using the related chrome.

hope it helps!

sanju paswan

unread,
Aug 12, 2023, 1:54:15 AM8/12/23
to ChromeDriver Users
When I run my code the browser open for 3 to 4 seconds only and close automatically due to the chromedriver issue. My chrome version is  115.0.5790.171 but I have installed  115.0.5790.170 that's why. Is there any solution for this one?

On Friday, August 4, 2023 at 8:55:30 PM UTC+5:30 Einar Saugen wrote:
I have the same issue:  my Chrome browsers are 115.0.5790.171, but the closest matching ChromeDriver version is  115.0.5790.170

Using the chromedriver googleapis url pre Chrome 115, I could automate the driver updates by requesting the recommended driver version number for chrome, and then download that version.

For this new Chrome-For-Testing setup, you say that each chrome version should have a chromedriver with a corresponding version number.
Thus I would expect, that if my scripts finds that I have Chrome version X.Y.Z, I could download the corresponding chromedriver from https://edgedl.me.gvt1.com/edgedl/chrome/chrome-for-testing/X.Y.Z/win64/chromedriver-win64.zip

Is there any endpoint I could query, to get the excact chromedriver version number recommended for a specific chrome version (or major version)?

On Friday, 4 August 2023 at 17:01:16 UTC+2 Gilles Hoeltzel wrote:
instructions ?

Le vendredi 4 août 2023 à 07:26:15 UTC+2, Mathias Bynens a écrit :

On Fri, Aug 4, 2023 at 5:10 AM Aleksandr Vasilev <how...@gmail.com> wrote:
I can't find it either

пятница, 4 августа 2023 г. в 03:34:18 UTC+9, SAMIR ABBOUD:
Hi,  I Have the same issue And I can't find the ChromeDriver for the version 115.0.5790.171, any solution!

Le jeudi 3 août 2023 à 12:32:54 UTC+2, jd....@yucom.be a écrit :
I can't find the ChromeDriver 115.0.5790.171 (64-bits) via your link. Only the ChromeDriver 115.0.5790.170 (64-bits) is listed.

Op donderdag 3 augustus 2023 om 08:58:07 UTC+2 schreef Mathias Bynens:

On Thu, Aug 3, 2023 at 2:43 AM jd....@yucom.be <jd....@yucom.be> wrote:
Hi, Google Chrome has been automatically updated to version 115.0.5790.171 (64-bits). Where can I find the ChromeDriver for this version?

--
You received this message because you are subscribed to the Google Groups "ChromeDriver Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to chromedriver-us...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/chromedriver-users/dffd332e-c3d8-4303-8e55-ada41a3fc7f2n%40googlegroups.com.

--
You received this message because you are subscribed to the Google Groups "ChromeDriver Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to chromedriver-us...@googlegroups.com.

1973 0x (‪0x1973‬)

unread,
Aug 13, 2023, 5:26:43 AM8/13/23
to ChromeDriver Users

Sabareesh Prabu

unread,
Aug 14, 2023, 2:47:00 AM8/14/23
to ChromeDriver Users
Hi All,

When will ChromeDriver -115.0.5790.171 will be released?
Is there any other option?

I downgraded to 114, but couldnt find exact chromedriver.
Pls help me with same version of chromedriver and chrome version to download from.

Thanks
Sabareesh

Anil Bothe

unread,
Aug 14, 2023, 11:57:46 AM8/14/23
to ChromeDriver Users
I have also same issue :(

Yury Degtyarev

unread,
Aug 14, 2023, 2:24:26 PM8/14/23
to ChromeDriver Users
Hi everyone,
I've just downloaded from https://googlechromelabs.github.io/chrome-for-testing/#stable
Best regards

katsuki kunitomo

unread,
Aug 15, 2023, 11:22:02 AM8/15/23
to ChromeDriver Users
Thank you so much.
Thanks to this post of yours, all my problems are solved.

2023年8月12日土曜日 14:40:30 UTC+9 Saurabh Agarwal:

Don Leverton

unread,
Aug 15, 2023, 11:42:22 AM8/15/23
to ChromeDriver Users
The #1 point to be made here, folks, is that there is "Regular Chrome" that you use for "Regular browsing"
Then there is "Chrome for Testing" which is used for web automation and testing purposes.
90% of the threads seem to be from users that do not understand this.

I'm a VBA user, so I still haven't determined a way to "use the JSON endpoints" that point to the latest "stable" version.
BUT, my understanding is that AS LONG AS the "Chrome For Testing" version is the same as the ChromeDriver version

The solution that I have found for SeleniumBasic (VBA, VBS coding) is to specify the path to the correct BINARY file for the CFT version of Chrome at runtime.

VBA code snippet:
'Dim drv As New Selenium.ChromeDriver 'Moved to Form Declaration area
drv.SetBinary ("C:\Program Files\Google\Chrome For Testing\chrome.exe") 'This uses the Cft (Chrome for Testing) browser instead of "regular" Chrome


Igor Shevchuk

unread,
Aug 16, 2023, 8:12:55 AM8/16/23
to ChromeDriver Users
@Don Leverton is right.

Here's blog post from June about new release process for Chome for tests: https://developer.chrome.com/blog/chrome-for-testing/

Gustavo Ruiz

unread,
Aug 16, 2023, 8:53:28 AM8/16/23
to ChromeDriver Users
Version 116.0.5845.97 has just been released,
No more problems with 115, if you need to use 115 then the last 114 chromedriver works fine (I've found out that yesterday and then Chrome got updated to 116)
Message has been deleted

Nick Tarasenko

unread,
Aug 17, 2023, 1:28:53 PM8/17/23
to ChromeDriver Users
Hey guys, 
As far as I know, the ChromeWebDriver is unnecessary for the Chrome version 115 and higher. 
Here's my old code, which is used to work yesterday:
# Set the path to the Chrome WebDriver executable
chrome_driver_path = "/Users/picknick/Programs/chromewebdriver/chromedriver_mac_arm64/chromedriver" # The actual path to chromedriver.exe

# Create a new Service instance for ChromeDriver
webdriver_service = Service(chrome_driver_path)
webdriver_service.start()

# Create a new WebDriver instance using the Service object
options = webdriver.ChromeOptions()
options.add_argument("--start-maximized") # Maximize the Chrome window
driver = webdriver.Chrome(service=webdriver_service, options=options)
But I am still struggling with my script. How should I indicate the path to the Test version of the Chrome 116?
a) The TEST app doesn't work itself:

“Google Chrome for Testing” is damaged and can’t be opened. You should move it to the Trash.

b) Should I even use this TEST version of the Chrome? My current general version is Version 116.0.5845.96 (Official Build) (arm64). Does that mean that the CrhomeWebDriver is embedded?
If so, how should I configure my code in this case? Do I need to use the chrome_driver_path?

Please help me to resolve this issue.

Thanks,
Nick

Nick Tarasenko

unread,
Aug 17, 2023, 1:42:15 PM8/17/23
to ChromeDriver Users
I have downloaded both Chrome for testing and Webdriver.
chrome_dev_path = '/Users/picknick/Programs/Driver/Chrome'
chrome_options = Options()
chrome_options.binary_location = chrome_dev_path
service = Service('/Users/picknick/Programs/Driver/chromedriver')

driver = webdriver.Chrome(service=service, options=chrome_options)
And still facing the same issue:
(perm-monitor) (base) picknick@Nicks-MacBook-Pro permission-monitor-driver % python permission-monitor-driver.py
/Users/picknick/Job/Aware360/permission-monitor-driver/perm-monitor/lib/python3.9/site-packages/urllib3/__init__.py:34: NotOpenSSLWarning: urllib3 v2.0 only supports OpenSSL 1.1.1+, currently the 'ssl' module is compiled with 'LibreSSL 2.8.3'. See: https://github.com/urllib3/urllib3/issues/3020
  warnings.warn(
An error occurred during the asset upload process:
Traceback (most recent call last):
  File "/Users/picknick/Job/Aware360/permission-monitor-driver/permission-monitor-driver.py", line 112, in permission_assigning
    driver = webdriver.Chrome(service=service, options=chrome_options)
  File "/Users/picknick/Job/Aware360/permission-monitor-driver/perm-monitor/lib/python3.9/site-packages/selenium/webdriver/chrome/webdriver.py", line 45, in __init__
    super().__init__(
  File "/Users/picknick/Job/Aware360/permission-monitor-driver/perm-monitor/lib/python3.9/site-packages/selenium/webdriver/chromium/webdriver.py", line 56, in __init__
    super().__init__(
  File "/Users/picknick/Job/Aware360/permission-monitor-driver/perm-monitor/lib/python3.9/site-packages/selenium/webdriver/remote/webdriver.py", line 206, in __init__
    self.start_session(capabilities)
  File "/Users/picknick/Job/Aware360/permission-monitor-driver/perm-monitor/lib/python3.9/site-packages/selenium/webdriver/remote/webdriver.py", line 290, in start_session
    response = self.execute(Command.NEW_SESSION, caps)["value"]
  File "/Users/picknick/Job/Aware360/permission-monitor-driver/perm-monitor/lib/python3.9/site-packages/selenium/webdriver/remote/webdriver.py", line 345, in execute
    self.error_handler.check_response(response)
  File "/Users/picknick/Job/Aware360/permission-monitor-driver/perm-monitor/lib/python3.9/site-packages/selenium/webdriver/remote/errorhandler.py", line 229, in check_response
    raise exception_class(message, screen, stacktrace)
selenium.common.exceptions.WebDriverException: Message: unknown error: no chrome binary at /Users/picknick/Programs/Driver/Chrome
Stacktrace:
0   chromedriver                        0x000000010123e65c chromedriver + 4318812
1   chromedriver                        0x0000000101236d00 chromedriver + 4287744
2   chromedriver                        0x0000000100e687ec chromedriver + 296940
3   chromedriver                        0x0000000100e91100 chromedriver + 463104
4   chromedriver                        0x0000000100e8fca0 chromedriver + 457888
5   chromedriver                        0x0000000100ecf954 chromedriver + 719188
6   chromedriver                        0x0000000100ecf120 chromedriver + 717088
7   chromedriver                        0x0000000100e9a178 chromedriver + 500088
8   chromedriver                        0x0000000100e9afc0 chromedriver + 503744
9   chromedriver                        0x00000001011fec40 chromedriver + 4058176
10  chromedriver                        0x0000000101203160 chromedriver + 4075872
11  chromedriver                        0x00000001011c6e68 chromedriver + 3829352
12  chromedriver                        0x0000000101203c4c chromedriver + 4078668
13  chromedriver                        0x00000001011dbf08 chromedriver + 3915528
14  chromedriver                        0x0000000101220140 chromedriver + 4194624
15  chromedriver                        0x00000001012202c4 chromedriver + 4195012
16  chromedriver                        0x00000001012304d0 chromedriver + 4261072
17  libsystem_pthread.dylib             0x00000001a4783fa8 _pthread_start + 148
18  libsystem_pthread.dylib             0x00000001a477eda0 thread_start + 8


(perm-monitor) (base) picknick@Nicks-MacBook-Pro permission-monitor-driver % 

Cường Vũ

unread,
Aug 22, 2023, 5:23:04 AM8/22/23
to ChromeDriver Users
Dear everyone,
Previously I had a C# code that automatically downloaded the chromedrive corresponding to the version, I tried replacing it with a new link but it didn’t work. "The remote server returned an error: (426) Upgrade Required.". I have used various libraries such as httpclient, wedclient, ... but it doesn't work.
Can someone help me?
Thank you.
Vào lúc 00:42:15 UTC+7 ngày Thứ Sáu, 18 tháng 8, 2023, Nick Tarasenko đã viết:

Luan Tenório de Oliveira

unread,
Sep 4, 2023, 2:22:12 PM9/4/23
to ChromeDriver Users
Alternatively, what i did: i uninstalled version 115. Installed version 114 (standalone) and turned off automatic updates. Resolved.

Alternativamente,
o que eu fiz: desinstalei a versão 115.
Instalei a versão 114 (standalone)
e desativei as atualizações automáticas.
Resolveu. (Brazil !!!)

Deepak Goyal

unread,
Sep 8, 2023, 7:38:18 AM9/8/23
to ChromeDriver Users
Same issue is with Chrome version 116.0.5845.140
Chrome driver url (https://edgedl.me.gvt1.com/edgedl/chrome/chrome-for-testing/116.0.5845.140/linux64/chromedriver-linux64.zip) is giving 404 error.

Thu Ra

unread,
Sep 8, 2023, 10:45:40 AM9/8/23
to ChromeDriver Users

Ajoe Alex

unread,
Sep 16, 2023, 5:05:17 AM9/16/23
to ChromeDriver Users
Check this article:
https://automationhub.in/chrome-driver-download-helper/

Hope this helps

MAKEL SHAWN ROBINSON

unread,
Oct 9, 2023, 11:42:22 PM10/9/23
to ChromeDriver Users
"""ทดลองเล่นสล็อตฟรี สล็อตเว็บตรง สล็อตทดลอง
✅ เข้าเว็บไซต์
http://bit.ly/3RPBnb1
✅ สมัครสมาชิก
http://bit.ly/3RPBnb1

✅ ติดต่อเรา
http://bit.ly/3RPBnb1

✅ รับโปรโมชั่น
http://bit.ly/3RPBnb1
Reply all
Reply to author
Forward
0 new messages