Skip to content

Commit

Permalink
Update most dependencies to latest versions
Browse files Browse the repository at this point in the history
  • Loading branch information
ttys0dev committed Dec 5, 2023
1 parent 6580ed4 commit 9ecad20
Show file tree
Hide file tree
Showing 3 changed files with 704 additions and 670 deletions.
5 changes: 2 additions & 3 deletions cl/tests/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,13 +69,12 @@ def _create_browser() -> webdriver.Chrome:
)

if settings.DOCKER_SELENIUM_HOST:
capabilities = options.to_capabilities()
return webdriver.Remote(
settings.DOCKER_SELENIUM_HOST,
desired_capabilities=capabilities,
options=options,
keep_alive=True,
)
return webdriver.Chrome(chrome_options=options, keep_alive=True)
return webdriver.Chrome(options=options, keep_alive=True)

@classmethod
def setUpClass(cls) -> None:
Expand Down
Loading

0 comments on commit 9ecad20

Please sign in to comment.