You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -72,7 +72,7 @@ A virtual environment is like a sandbox—it keeps your project’s Python packa
72
72
73
73
Note: If you are using an IDE such as Visual Studio Code or PyCharm, you will normally be prompted to do this automatically.
74
74
75
-
##### First Create the virtual environment
75
+
##### First - Create the virtual environment
76
76
77
77
To create and activate a virtual environment, open your terminal or command prompt in the root folder of the project (where requirements.txt lives), then run:
78
78
@@ -84,7 +84,7 @@ If you get an error like 'Python not found', try using Python3 instead:
84
84
85
85
`python3 -m venv .venv`
86
86
87
-
##### Next Activate the virtual environment
87
+
##### Next - Activate the virtual environment
88
88
89
89
This step tells your terminal to use the Python version and packages inside .venv.
90
90
@@ -202,6 +202,13 @@ Each test typically follows this structure:
202
202
203
203
```Python
204
204
deftest_user_can_login(page):
205
+
"""
206
+
Verifies that a predefined user can successfully log in and reach the BCSS home page.
207
+
208
+
Steps:
209
+
- Logs in using the 'Hub Manager State Registered at BCS01' user defined in users.json.
210
+
- Asserts that the application title is visible and contains the expected text.
211
+
"""
205
212
UserTools.user_login(page, "Hub Manager State Registered at BCS01") # Users are defined in users.json
0 commit comments