Open In App

Login Twitter using Python Selenium

Project Description:-
Here, we’re going to study a simple how-to log in twitter by selenium. Selenium is a free tool for automated trying out across exceptional browsers.

Requirement:



Below are the steps:

Below is the implementation:

One can replace the username and password for the account to be successfully logged in. Here the code is for demonstration only.




from selenium import webdriver
from selenium.webdriver.common.keys import Keys
import time
  
# create instance of Chrome webdriver
driver = webdriver.Chrome() 
  
# find the element where we have to 
# enter the xpath
# fill the number or mail
driver.find_element_by_xpath('//*[@id ="react-root"]/div/div/div[2]/main/div/div/div[1]/form/div/div[1]/label/div/div[2]/div/input').send_keys('XXXXXX0418')
  
# find the element where we have to 
# enter the xpath
# fill the password
driver.find_element_by_xpath('//*[@id ="react-root"]/div/div/div[2]/main/div/div/div[1]/form/div/div[2]/label/div/div[2]/div/input').send_keys('PrXXXXXXXXX9')
  
# find the element log in 
# request using xpath 
# clicking on that element 
driver.find_element_by_xpath('//*[@id ="react-root"]/div/div/div[2]/main/div/div/div[1]/form/div/div[3]/div/div').click()

Output –
You will be logged in to twitter in the browser selenium has opened automatically.

Article Tags :