-
-
Notifications
You must be signed in to change notification settings - Fork 8.6k
Open
Labels
A-needs-triagingA Selenium member will evaluate this soon!A Selenium member will evaluate this soon!C-pyPython BindingsPython BindingsI-defectSomething is not working as intendedSomething is not working as intendedI-regressionSomething was working but we "fixed" itSomething was working but we "fixed" it
Description
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
Labels
A-needs-triagingA Selenium member will evaluate this soon!A Selenium member will evaluate this soon!C-pyPython BindingsPython BindingsI-defectSomething is not working as intendedSomething is not working as intendedI-regressionSomething was working but we "fixed" itSomething was working but we "fixed" it