Skip to content

Commit

Permalink
fix path
Browse files Browse the repository at this point in the history
  • Loading branch information
dmy.berezovskyi committed Oct 8, 2024
1 parent 5b61ee1 commit 144b8b2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions .github/workflows/run_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,13 @@ jobs:
with:
python-version: "3.10"

# Clear Poetry cache
- name: Clear Poetry cache
run: |
poetry cache clear --all pypoetry
poetry cache clear --all virtualenvs
# Install Chrome and WebDriver if not already installed
- name: Install Chrome and WebDriver if not already installed
run: |
if ! command -v google-chrome &>/dev/null; then
Expand Down
2 changes: 1 addition & 1 deletion src/locators/locators.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@


class General:
LOGO = (By.CLASS_NAME, "sj-logo lazy loaded")
LOGO = (By.ID, "userForm")


class TextFields:
Expand Down

0 comments on commit 144b8b2

Please sign in to comment.