Skip to content

Commit e5096c6

Browse files
committed
doc: updated README.md
1 parent 2137bd4 commit e5096c6

File tree

1 file changed

+34
-2
lines changed

1 file changed

+34
-2
lines changed

Facebook-AutoLogin/README.md

+34-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,34 @@
1-
# Facebook_AutoLogin
2-
Python based Automated Facebook Login
1+
# Facebook-AutoLogin
2+
</br>
3+
4+
## About This Project
5+
This is a python script that automates the facebook login process
6+
</br>
7+
8+
## How To Run
9+
10+
To run the script use following commands
11+
12+
1. Get the required modules
13+
```bash
14+
pip install -r requirements.txt
15+
```
16+
17+
2. Add your email/username in place of [email protected]
18+
```python
19+
driver.find_element_by_id("email").send_keys("[email protected]")
20+
```
21+
3. Add your password in the following line
22+
```python
23+
driver.find_element_by_id("pass").send_keys("password")
24+
```
25+
4. Run chromedriver.exe , located in
26+
```bash
27+
Facebook-AutoLogin/chromedriver.exe
28+
```
29+
30+
5. Run the python script
31+
```python
32+
python facebookAuto.py
33+
```
34+

0 commit comments

Comments
 (0)