Skip to content

Commit 753a853

Browse files
update readme.md
1 parent 78ffcd8 commit 753a853

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,16 @@ Tutorials and sample web automation tests project using Selenium and Python
77
python -V
88
```
99
2. Clone this repository to your local machine.
10-
3. Open folder (`python`) in VS Code.
11-
4. Using terminal navigate to a project and run `pip install`
10+
3. Open folder (`selenium-webdriver-python`) in VS Code.
11+
4. Using terminal navigate to project folder and run
1212
```PS
1313
pip install -r requirements.txt
1414
```
1515
1616
## Usage
1717
1. Make sure you have the appropriate browser installed (`https://www.selenium.dev/documentation/webdriver/browsers/`)
1818
2. Open the project directory in VS Code or your preferred IDE.
19-
4. Run the tests using your preferred test runner or IDE or from terminal, e.g. use any of the below:
19+
3. Run the tests using your preferred test runner or IDE or from terminal, e.g. use any of the below:
2020
```PS
2121
pytest .\tests\test_selenium_web_form.py
2222
pytest -m selenium

pyproject.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
[project]
2-
name = "python"
2+
name = "selenium_webdriver_python"
33
version = "1.0.0"
44
dependencies = [
55
"pytest",
66
"pytest-html",
7+
"pytest-xdist",
78
"selenium"
89
]
910
requires-python = ">=3.12"

0 commit comments

Comments
 (0)