﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
34675	Selenium WebDriver implementation is broken due to update of Selenium	Jonathan Weth	Jonathan Weth	"{{{
    def create_webdriver(self):
        if self.selenium_hub:
            from selenium import webdriver
    
>           return webdriver.Remote(
                command_executor=self.selenium_hub,
                desired_capabilities=self.get_capability(self.browser),
            )
E           TypeError: WebDriver.__init__() got an unexpected keyword argument 'desired_capabilities'

.tox/globalenv/lib/python3.11/site-packages/django/test/selenium.py:92: TypeError
}}}

In selenium >= 4.10, `desired_capabilities` is no longer a valid argument for the constructor of `WebDriver`. There seem to be other ways to set those capabilities.

https://github.com/django/django/blob/main/django/test/selenium.py#L95
https://github.com/SeleniumHQ/selenium/commit/9f5801c82fb3be3d5850707c46c3f8176e3ccd8e"	Cleanup/optimization	closed	Testing framework	dev	Normal	fixed			Accepted	1	0	0	0	1	1
