-
-
Notifications
You must be signed in to change notification settings - Fork 8.6k
Open
Labels
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" itJ-awaiting answerQuestion asked of user; a reply moves it to triage againQuestion asked of user; a reply moves it to triage againJ-loggingApplied to issues where logging information would help troubleshootApplied to issues where logging information would help troubleshoot
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
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" itJ-awaiting answerQuestion asked of user; a reply moves it to triage againQuestion asked of user; a reply moves it to triage againJ-loggingApplied to issues where logging information would help troubleshootApplied to issues where logging information would help troubleshoot