Skip to content

Commit

Permalink
Debug
Browse files Browse the repository at this point in the history
  • Loading branch information
SenZmaKi committed Jun 29, 2024
1 parent 742e937 commit 6d6552a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
id: test_pahe
continue-on-error: true

run: poetry run poe test_pahe_ddl
run: poetry run poe test_pahe_ddl --browser chrome

- name: Test Gogo Norm
id: test_gogo_norm
Expand Down
3 changes: 2 additions & 1 deletion senpwai/common/selenium.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
from selenium.webdriver import (
Chrome,
ChromeOptions,
ChromeService,
Edge,
EdgeOptions,
EdgeService,
Expand Down Expand Up @@ -91,7 +92,7 @@ def helper(browser_name: BrowserName):
case BrowserName.chrome:
chrome_driver_path = os.getenv("CHROME_DRIVER_PATH", None)
print("Chrome driver path:", chrome_driver_path)
service_chrome = ChromiumService(
service_chrome = ChromeService(
executable_path=chrome_driver_path
)
options = cast(ChromeOptions, setup_options(ChromeOptions()))
Expand Down

0 comments on commit 6d6552a

Please sign in to comment.