Skip to content
This repository has been archived by the owner on Oct 6, 2024. It is now read-only.

Commit

Permalink
use ChromeOptions for selenium webdriver
Browse files Browse the repository at this point in the history
  • Loading branch information
sebgrebe committed Apr 1, 2024
1 parent 669fa22 commit 52b6dce
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions eahub/tests/e2e/cases.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,9 @@ class E2ETestCase(StaticLiveServerTestCase):

@classmethod
def setUpClass(cls):
chrome_options = Options()

cls.selenium = webdriver.Remote(
command_executor="http://selenium-hub:4444/wd/hub",
options=chrome_options
options=webdriver.ChromeOptions()
)

super().setUpClass()
Expand Down

0 comments on commit 52b6dce

Please sign in to comment.