Revert "tests/e2e: remove chrome requirement"

This reverts commit b86fd7b716.
This commit is contained in:
Jens Langhammer 2021-07-29 18:02:42 +02:00
parent b86fd7b716
commit 6aebbec270
1 changed files with 2 additions and 0 deletions

View File

@ -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):