from selenium import webdriver from selenium.webdriver.chrome.service import Service from selenium.webdriver.common.by import By from selenium.webdriver.support.ui import WebDriverWait from selenium.webdriver.support import expected_conditions as EC from selenium.common.exceptions import TimeoutException import pandas as pd import time web = 'https://twitter.com/' path = r"C:\Drivers\chromedriver-win64\chromedriver.exe" options = webdriver.ChromeOptions() service = Service(executable_path=path) options.add_experimental_option("detach", True) options.add_argument('window-size=1920x1080') driver = webdriver.Chrome(service=service, options=options) driver.get(web) # Open the webpage # Wait for the login button to be clickable login_button = WebDriverWait(driver, 10).until( EC.element_to_be_clickable((By.XPATH, '//a[contains(@href, "/login")]')) ) login_button.click() time.sleep(2) # Wait for the username input field to be visible and then enter username user_name = WebDriverWait(driver, 10).until( EC.visibility_of_element_located((By.XPATH, '//input[contains(@autocomplete, "username")]')) ) user_name.send_keys("mnis00014@gmail.com") # Wait for the next button to be clickable and then click next_button = WebDriverWait(driver, 10).until( EC.element_to_be_clickable((By.XPATH, '//div[contains(@role, "button")]//span[text()="Next"]')) ) next_button.click() time.sleep(2) # Wait for the password input field to be visible and then enter password password = WebDriverWait(driver, 10).until( EC.visibility_of_element_located((By.XPATH, '//input[contains(@autocomplete, "current-password")]')) ) password.send_keys("Tw@mnis@2024") # Wait for the login button to be clickable and then click login_button = WebDriverWait(driver, 10).until( EC.element_to_be_clickable((By.XPATH, '//div[contains(@role, "button")]//span[text()="Log in"]')) ) login_button.click() # closing driver # driver.quit()
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter