Python
Hello World: Create your First Python Program
In the last tutorial, we completed our Python installation and setup. It's time to create your...
In order to log into Facebook using Python, you need to use Selenium (a web automation tool). Selenium can automate and control a browser and click, fill text, submit buttons that appear on various websites.
To log in to Facebook, we will use a Python Script that drives Selenium. The Selenium Python Script will
Here is a quick video on the system will work.
Note: You can configure Selenium to use any browser like Chrome, Safari, IE, etc. In this tutorial, we will use FireFox
What do you need to Install?
Code to Login into Facebook using Python
from selenium import webdriver
from selenium.webdriver.support.ui import WebDriverWait
# Step 1) Open Firefox
browser = webdriver.Firefox()
# Step 2) Navigate to Facebook
browser.get("http://www.facebook.com")
# Step 3) Search & Enter the Email or Phone field & Enter Password
username = browser.find_element_by_id("email")
password = browser.find_element_by_id("pass")
submit = browser.find_element_by_id("loginbutton")
username.send_keys("This email address is being protected from spambots. You need JavaScript enabled to view it.")
password.send_keys("yourpassword")
# Step 4) Click Login
submit.click()
Explanation of the code
Sample Output
The values of the username "gtupapers" and password entered.
The Facebook page will login with email and password. Page opened (see image below)
⚡ What else can I use except Selenium to login to Facebook using Python?
You can use the Facebook API to write Python Scripts to log into Facebook from your application
✔️ Is there an alternative to using Selenium for Login to Facebook using Python?
There are many alternatives to Selenium that you can check here Though some of the tools may not support Python
In the last tutorial, we completed our Python installation and setup. It's time to create your...
What is Function in Python? A Function in Python is a piece of code which runs when it is...
How to Use Python Online Compiler Follow the simple steps below to compile and execute Python...
What is Lambda Function in Python? A Lambda Function in Python programming is an anonymous...
Python is one of the most popular programming languages. Currently, each of the following six...
What is Python Queue? A queue is a container that holds data. The data that is entered first will...