Skip to content

Commit 26d7745

Browse files
Create README.md
1 parent 17ae8d6 commit 26d7745

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

README.md

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# selenium-python-web-automation
2+
3+
## Installation Steps
4+
- **Step 0:** Ensure you have Python installed
5+
In Linux or MacOS, Python is installed by default.
6+
7+
If you are using Windows, you will need to download Python from the official download page - https://www.python.org/downloads/
8+
To verify, Python has been installed, run the command: `python --version`
9+
10+
11+
12+
- **Step 1:** Setup a virtual environment
13+
14+
`python -m venv <path-to-your-virtual-environment>`
15+
16+
17+
18+
- **Step 2:** Install Selenium
19+
20+
`pip install –U selenium`
21+
22+
23+
24+
- **Step 3:** Install Browser Drivers
25+
26+
I am using Safari browser which has native support for WebDriver, meaning you don't have to install anything.
27+
https://webkit.org/blog/6900/webdriver-support-in-safari-10/
28+
29+
30+
If you wish to use other browsers, you may need to download drivers for those.
31+
32+
For example - for *Chrome* - download ChromeDriver from https://sites.google.com/chromium.org/driver/. Make sure to download according to your browser version.

0 commit comments

Comments
 (0)