diff --git a/tests/e2e/utils.py b/tests/e2e/utils.py index 3453a379f..5ace1eab0 100644 --- a/tests/e2e/utils.py +++ b/tests/e2e/utils.py @@ -21,6 +21,7 @@ from selenium.common.exceptions import ( WebDriverException, ) from selenium.webdriver.common.by import By +from selenium.webdriver.common.desired_capabilities import DesiredCapabilities from selenium.webdriver.common.keys import Keys from selenium.webdriver.remote.webdriver import WebDriver from selenium.webdriver.remote.webelement import WebElement @@ -87,6 +88,7 @@ class SeleniumTestCase(StaticLiveServerTestCase): def _get_driver(self) -> WebDriver: return webdriver.Remote( command_executor="http://localhost:4444/wd/hub", + desired_capabilities=DesiredCapabilities.CHROME, ) def tearDown(self):