Skip to content

Instantly share code, notes, and snippets.

View jivendra's full-sized avatar
🏠
Working from home

Jivendra Sah jivendra

🏠
Working from home
View GitHub Profile
@jivendra
jivendra / main.py
Created June 7, 2023 15:31
Selenium Script that will automatically enter passenger details in the IRCTC form while booking tickets
from selenium import webdriver
from selenium.webdriver.support import expected_conditions as EC
import time
from selenium.webdriver.common.keys import Keys
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.common.action_chains import ActionChains
from selenium.webdriver.support.select import Select
from selenium.webdriver.chrome.options import Options
import os