Skip to content

Commit 144b8b2

Browse files
author
dmy.berezovskyi
committed
fix path
1 parent 5b61ee1 commit 144b8b2

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.github/workflows/run_tests.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,13 @@ jobs:
2424
with:
2525
python-version: "3.10"
2626

27+
# Clear Poetry cache
28+
- name: Clear Poetry cache
29+
run: |
30+
poetry cache clear --all pypoetry
31+
poetry cache clear --all virtualenvs
32+
33+
# Install Chrome and WebDriver if not already installed
2734
- name: Install Chrome and WebDriver if not already installed
2835
run: |
2936
if ! command -v google-chrome &>/dev/null; then

src/locators/locators.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33

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

77

88
class TextFields:

0 commit comments

Comments
 (0)