From 6aebbec2701d2489aeacdd881024a83235f028e2 Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Thu, 29 Jul 2021 18:02:42 +0200 Subject: [PATCH] Revert "tests/e2e: remove chrome requirement" This reverts commit b86fd7b71605bea6097860c55fcc3cb1a87bd208. --- tests/e2e/utils.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/e2e/utils.py b/tests/e2e/utils.py index 3453a379fb..5ace1eab06 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):