mismatch chrome and chrome webdriver

1,702 views
Skip to first unread message

ABRAMS

unread,
Sep 26, 2021, 3:55:35 PM9/26/21
to ChromeDriver Users
I'm using Chrome version 94. I download the webdriver for win 94 from chromium website

When I run a python program I get this error message-- chromewebdriver only works with chrome version 92.  How do I fix this?

Maksim Sadym

unread,
Sep 27, 2021, 9:28:15 AM9/27/21
to ChromeDriver Users
Please verify you use the proper version by running `chromedriver -v`. And if it's not 94.0.4606.61, download it again.

Dukhishyam Mishra

unread,
Sep 28, 2021, 5:08:57 AM9/28/21
to ChromeDriver Users
Hi Folks,

I am using Chromedriver version  94.0.4606.61 which is same version of my Chrome browser . However i am unable to launch my webdriver and seeing this error .
ChromeDriver was started successfully.
org.openqa.selenium.SessionNotCreatedException: session not created
from disconnected: unable to connect to renderer
  (Session info: chrome=94.0.4606.61)
  (Driver info: chromedriver=94.0.4606.61 (418b78f5838ed0b1c69bb4e51ea0252171854915-refs/branch-heads/4606@{#1204}),platform=Windows NT 10.0.19042 x86_64) (WARNING: The server did not provide any stacktrace information)
Command duration or timeout: 959 milliseconds
Build info: version: 'unknown', revision: 'unknown', time: 'unknown'
System info: host: 'DESKTOP-MHGI9SL', ip: '15.77.39.204', os.name: 'Windows 10', os.arch: 'amd64', os.version: '10.0', java.version: '1.8.0_281'
Driver info: org.openqa.selenium.chrome.ChromeDriver

Anyone have any suggestion please !!!

ANkiTa VeRmA

unread,
Sep 29, 2021, 10:19:36 AM9/29/21
to ChromeDriver Users
Hi Team,

Even I am also facing the same issue after chrome driver is updated to  chrome=94.0.4606.61, getting  SessionNotCreatedException: Message: session not created exception

santhosh saibabu

unread,
Sep 30, 2021, 2:13:08 PM9/30/21
to ChromeDriver Users
Hello All..

I am having the same issue. Do we know what is the fix. We are running open JDK 1.8

Regards,
Santhosh

Dave Taggart

unread,
Oct 1, 2021, 10:40:04 AM10/1/21
to ChromeDriver Users
Version mismatch. The most recent stable version of Chrome appears to be 94.0.4606.71. No matching driver available as of 2021/10/01 08:39 MDT

Max Russell

unread,
Oct 5, 2021, 7:00:32 AM10/5/21
to ChromeDriver Users
Is there any plan for a fix to current chromedriver? .61 is not creating session with Chrome:




SessionNotCreatedException: Message: session not created from timeout: Timed out receiving message from renderer: 600.000 (Session info: chrome=94.0.4606.54) (Driver info: chromedriver=94.0.4606.61 (418b78f5838ed0b1c69bb4e51ea0252171854915-refs/branch-heads/4606@{#1204}),platform=Windows NT 6.3.9600 x86_64)

Jeffrey Walton

unread,
Oct 7, 2021, 10:46:09 AM10/7/21
to ChromeDriver Users
On Tuesday, September 28, 2021 at 5:08:57 AM UTC-4 Dukhishyam Mishra wrote:
Hi Folks,

I am using Chromedriver version  94.0.4606.61 which is same version of my Chrome browser . However i am unable to launch my webdriver and seeing this error .
ChromeDriver was started successfully.
org.openqa.selenium.SessionNotCreatedException: session not created
from disconnected: unable to connect to renderer
  (Session info: chrome=94.0.4606.61)
  (Driver info: chromedriver=94.0.4606.61 (418b78f5838ed0b1c69bb4e51ea0252171854915-refs/branch-heads/4606@{#1204}),platform=Windows NT 10.0.19042 x86_64) (WARNING: The server did not provide any stacktrace information)
Command duration or timeout: 959 milliseconds
Build info: version: 'unknown', revision: 'unknown', time: 'unknown'
System info: host: 'DESKTOP-MHGI9SL', ip: '15.77.39.204', os.name: 'Windows 10', os.arch: 'amd64', os.version: '10.0', java.version: '1.8.0_281'
Driver info: org.openqa.selenium.chrome.ChromeDriver

I'm working on Fedora 34, x86_64, fully patched. The machine took an update on Monday October 4 and it broke things. The update included the following:

    Upgrade  chromedriver-94.0.4606.61-1.fc34.x86_64     @updates
    Upgraded chromedriver-93.0.4577.63-1.fc34.x86_64     @@System
    Upgrade  chromium-94.0.4606.61-1.fc34.x86_64         @updates
    Upgraded chromium-93.0.4577.63-1.fc34.x86_64         @@System
    Upgrade  chromium-common-94.0.4606.61-1.fc34.x86_64  @updates
    Upgraded chromium-common-93.0.4577.63-1.fc34.x86_64  @@System

I can duplicate the " SessionNotCreatedException: session not created" exception with the following code:

    opts = Options()
    opts.binary_location = get_chrome()
    opts.add_argument('--headless')
    opts.add_argument('--no-sandbox')
    opts.add_argument('--disable-dev-shm-usage')
    opts.add_argument('--disable-gpu')
    driver = webdriver.Chrome(options=opts)

I can sidestep the SessionNotCreatedException with this code, but it results in another exception:

    opts = Options()
    opts.binary_location = get_chrome()
    opts.add_argument('--headless')
    opts.add_argument('--no-sandbox')
    opts.add_argument('--disable-dev-shm-usage')
    opts.add_argument('--disable-gpu')
    driver = webdriver.Chrome(chrome_options=opts)

The code above produces another exception, though. The exception is:

     selenium.common.exceptions.WebDriverException: Message: unknown error: unable to
    discover open window in chrome (Session info: headless chrome=94.0.4606.61)

So we are dead in the water, too.

Jeffrey Walton

unread,
Oct 7, 2021, 11:16:28 AM10/7/21
to ChromeDriver Users
On Tuesday, September 28, 2021 at 5:08:57 AM UTC-4 Dukhishyam Mishra wrote:

I am using Chromedriver version  94.0.4606.61 which is same version of my Chrome browser . However i am unable to launch my webdriver and seeing this error .
ChromeDriver was started successfully.
org.openqa.selenium.SessionNotCreatedException: session not created
from disconnected: unable to connect to renderer
  (Session info: chrome=94.0.4606.61)
  (Driver info: chromedriver=94.0.4606.61 (418b78f5838ed0b1c69bb4e51ea0252171854915-refs/branch-heads/4606@{#1204}),platform=Windows NT 10.0.19042 x86_64) (WARNING: The server did not provide any stacktrace information)
Command duration or timeout: 959 milliseconds
Build info: version: 'unknown', revision: 'unknown', time: 'unknown'
System info: host: 'DESKTOP-MHGI9SL', ip: '15.77.39.204', os.name: 'Windows 10', os.arch: 'amd64', os.version: '10.0', java.version: '1.8.0_281'
Driver info: org.openqa.selenium.chrome.ChromeDriver

Reply all
Reply to author
Forward
0 new messages