Skip to content

[🐛 Bug]: Selenium 4.36.0 onwards doesnot work with firefox 128 and above and geckodriver 0.36.0 #16792

@GEAGARWAL

Description

@GEAGARWAL

Description

We were trying to execute the GUI test cases on selenium 4.36.0 and above, which were working fine with selenium version 4.35.0 on firefox 128 using geckodriver 0.36.0 . With same releases of firefox and geckodriver the code return error status 64 with newer versions of selenium. The python code below generates the same error we are observing with selenium release 4.36.0 onwards

Reproducible Code

from selenium.webdriver import Firefox
from selenium.webdriver.firefox.service import Service
from selenium.webdriver.firefox.options import Options

options = Options()
options.headless = True  # optional

service = Service(executable_path='/usr/local/bin/geckodriver')
driver = Firefox(options=options, service=service)  # Fails with status 64 on selenium>=4.36.0
driver.get('http://10.19.49.174')
driver.quit()

ℹ️ Last known working version: 4.35.0

Metadata

Metadata

Assignees

No one assigned

    Labels

    A-needs-triagingA Selenium member will evaluate this soon!C-pyPython BindingsI-defectSomething is not working as intendedI-regressionSomething was working but we "fixed" it

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions