chromewebdriver 113.0.5672.93

2,378 views
Skip to first unread message

Luca Colazzo

unread,
May 11, 2023, 6:12:57 AM5/11/23
to ChromeDriver Users
Hi,
I'm running some tests with selenium and recently updated Chrome to v113.0.5672.93, but it seems like the chromewebdriver for this version is still not available.
I cannot run my tests using the previous version (v113.0.5672.63)
What can I do?

Thanks,

Luca

Giovanni Picaro

unread,
May 11, 2023, 4:25:58 PM5/11/23
to ChromeDriver Users
i'm following this too

Zahraa Hussain

unread,
May 11, 2023, 11:00:11 PM5/11/23
to ChromeDriver Users
113.0.5672.93 what happen of the  chromewebdriver for this version
I didnt find it yet  

Sela Shabtai

unread,
May 12, 2023, 4:53:37 AM5/12/23
to ChromeDriver Users
anyone found a solution?

Matheus Nogueira Arruda

unread,
May 12, 2023, 8:23:43 AM5/12/23
to ChromeDriver Users

Nothing yet... if someone find something please share here...
Thanks

Matheus Nogueira Arruda

unread,
May 12, 2023, 10:49:02 AM5/12/23
to ChromeDriver Users
I started using the Microsoft edge driver...
This is the second time that i'm with this problem chrome driver, so probably i will use the edge driver that has all versions of browser able to download as his recpectives drivers.

The code that i used to change for "microsoft edge".
"
from selenium import webdriver
from selenium.webdriver.edge.service import Service
from selenium.webdriver.edge.options import Options
import time

edge_path = r'path'

options = Options()
options.use_chromium = True  # Usar o Chromium Edge
#options.add_argument('--headless')  # Executar em modo headless, se necessário

driver = webdriver.Edge(service=Service(executable_path=edge_path), options=options)
wait = WebDriverWait(driver, 20)
"

HOPE THAT HELPS!

Peter Chao

unread,
May 13, 2023, 11:13:26 AM5/13/23
to ChromeDriver Users
I am so glad I have found this posting. I am also facing the issue.  What to do?

Daimer Andres Aguas Fabra

unread,
May 13, 2023, 12:50:29 PM5/13/23
to ChromeDriver Users
Hello, in serenity I added this in the serenity.conf file

webdriver {
capabilities {
browserName = "chrome"
"goog:chromeOptions" {
args = [ "window-size=1366,768","deny-permission-prompts","disable-notifications","remote-allow-origins=*"]
prefs{
"profile.managed_default_content_settings.geolocation":2
}
}
}
}

Kyle Williamson

unread,
May 15, 2023, 5:38:03 AM5/15/23
to ChromeDriver Users
Not ideal, but I decided to use the latest 113 chrome driver against the corresponding stable chromium build.

Chromium 113.0.5672.64 & Webdriver 113.0.5672.63

Ganesh Kumar

unread,
May 15, 2023, 6:49:10 AM5/15/23
to ChromeDriver Users
Hi I am using driver version of ChromeDriver 112.0.5615.49 which is working fine with chrome verison 113.0.5615

Ganesh Kumar

unread,
May 15, 2023, 6:52:35 AM5/15/23
to ChromeDriver Users
Chrome is up to date
Version 113.0.5672.93 (Official Build) (64-bit)

I also use the same Chrome in my laptop but the ChromeDriver 112.0.5615.49 version is working fine. However you will get the message like this "This version of ChromeDriver has not been tested with Chrome version 113.0.5615".
Reply all
Reply to author
Forward
0 new messages