We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b61ee1 commit 144b8b2Copy full SHA for 144b8b2
.github/workflows/run_tests.yaml
@@ -24,6 +24,13 @@ jobs:
24
with:
25
python-version: "3.10"
26
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
34
- name: Install Chrome and WebDriver if not already installed
35
run: |
36
if ! command -v google-chrome &>/dev/null; then
src/locators/locators.py
@@ -2,7 +2,7 @@
2
3
4
class General:
5
- LOGO = (By.CLASS_NAME, "sj-logo lazy loaded")
+ LOGO = (By.ID, "userForm")
6
7
8
class TextFields:
0 commit comments