From b86fd7b71605bea6097860c55fcc3cb1a87bd208 Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Thu, 29 Jul 2021 15:24:37 +0200 Subject: [PATCH] tests/e2e: remove chrome requirement Signed-off-by: Jens Langhammer --- tests/e2e/utils.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/e2e/utils.py b/tests/e2e/utils.py index 5ace1eab0..3453a379f 100644 --- a/tests/e2e/utils.py +++ b/tests/e2e/utils.py @@ -21,7 +21,6 @@ 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 @@ -88,7 +87,6 @@ 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):