Open In App

Login Twitter using Python Selenium

Improve
Improve
Like Article
Like
Save
Share
Report

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:

  • First, go to the twitter website using this Link.
  • Then click on investigate element by urgent ctrl + shift + i or stepping into setting of browser and clicking on investigate detail manually.
  • Then navigate box where Phone, email, or username are filled then copy the x_path.

  • Then navigate the Password then copy the x_path.

  • Then navigate the Login button then copy the x_path.

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.


Last Updated : 04 Jan, 2021
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads