shivamguys / irctc-cypress-automation

Tatkal and Normal train Booking Automation in 1 Minute ✔️ Signing in with your username and password. ✔️ Auto Upgradation Enabled. ✔️ Filling Captchas and retrying untill success. ✔️ Support for Food Choices, Seats Preferences. ✔️ Payment Gateway Automation (Paying With UPI ID OR QR Code).
92 stars 142 forks source link
booktatkal indian indianrail indianrailways irctc irctc-hacks irctc-website-replica irctcapi payment paytm railway-reservation railwaybook railways tatkal train trainbook trains traintatkal upi upi-payment

Please Favourite This Project Before Reading (1)

IRCTC Tatkal Cypress Automation !

Now book your tatkal tickets under 1 min at ease by bypassing captcha and filling multiple passenger details at once. Let the script book it for you.

🙏😍👏🙏😍🙏👏🙏😍🙏👏🙏😍🙏😍🙏👏🔥👍🔥👍🔥👍🔥

🎉🎉🎉🎉🎉🎉 Thanks for the appreciation guys, much appreciated. 🎉🎉🎉🎉🎉🎉🎉🎉🎉🎉🎉🎉🎉🎉🎉

image Tatkal_Appreciation

[!NOTE]

This Cypress script for automating IRCTC ticket booking
is created strictly for educational purposes. The code and its
usage are intended to showcase Cypress testing capabilities and
best practices. Any attempt to use this script for unauthorized
access or activities that violate IRCTC terms of service or legal
regulations is strictly prohibited. The author(s) and associated
entities are not responsible for any misuse or legal consequences 
resulting from the use of this script for any unauthorized 
activities.

IRCTC Automation

Watch the simple recording here....

Watch the video here

Features it has right now?

How to Make this work for you?

[!NOTE]

At a time either Tatkal Or Premium Tatkal can be -> true <- not both.

{
"TRAIN_NO": "12318",
"TRAIN_COACH": "3A",
"TRAVEL_DATE": "12/09/2023",
"SOURCE_STATION": "UMB",
"BOARDING_STATION": null, <-- Change to full station name if required, else leave null
"DESTINATION_STATION": "BSB",
"TATKAL": true,
"PREMIUM_TATKAL": false,
"UPI_ID_CONFIG": "",
"PASSENGER_DETAILS": [
{
"NAME": "SHIVAM PANDEY",
"AGE": 25,
"GENDER": "Male",
"SEAT": "Side Upper",
"FOOD" "No Food"
}
],

}


- Below are the relevant values you can use for **TRAIN_COACH**, **GENDER** , **SEAT**

***

"valid_coaches": "SL | 2A | 3A | 3E | 1A | CC | EC | 2S", <---------- Please Use Only from these values. "valid_seats": "Lower | Middle | Upper | Side Lower | Side Upper | Window Side | No Preference", <---------- Please Use Only from these values. "__valid_genders": "Male | Female | Transgender", <---------- Please Use Only from these values. "valid_food_choices__": "Veg | Non Veg | No Food" <---------- Please Use Only from these values.

***

- You can add multiple passenger array of objects in `PASSENGER_DETAILS` as an example below

{ "TRAIN_NO": "12318", "TRAIN_COACH": "3A", "TRAVEL_DATE": "12/09/2023", "SOURCE_STATION": "UMB", "BOARDING_STATION": null, <-- Change to full station name if required, else leave null "DESTINATION_STATION": "BSB", "TATKAL": true, "PREMIUM_TATKAL": false, "UPI_ID_CONFIG": "", "PASSENGER_DETAILS": [ { "NAME": "SHIVAM PANDEY", "AGE": 26, "GENDER": "Male", "SEAT": "Side Upper", "FOOD" "No Food" }, { "NAME": "Rachna Bhagat", "AGE": 26, "GENDER": "Female", "SEAT": "Side Lower", "FOOD" "No Food" }, { "NAME": "Passenger 3 Name", "AGE": 26, "GENDER": "Female", "SEAT": "Side Lower", "FOOD" "No Food" } ],

}


- You can configure your IRCTC `USERNAME` , `password` in `cypress.env.json`

> [!TIP]
> If you wish to enter **CAPTCHA** manually, then change `MANUAL_CAPTCHA` to `true` in `cypress.env.json`

{ "USERNAME": "yourusername", "PASSWORD": "yourpassword", "MANUAL_CAPTCHA": false }

# Running This On Github System (No Installation Required Easy 5 Minute Steps)... ?
Follow The Guide -> https://github.com/shivamguys/irctc-cypress-automation/discussions/38

# Running This On Your System... ?
## Running this whole bunch.. ?

## Installation Guide
- Clone the code ```git clone https://github.com/shivamguys/irctc-cypress-automation.git``` or download the code zip files.
- Make sure you have **Nodejs** and **npm** installed in your system you can visit **NodeJs** official website you will have full instruction guide present over there to install in your system.

### Sample Nodejs and npm installation in Linux

installs NVM (Node Version Manager)

curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash

download and install Node.js

nvm install 21

verifies the right Node.js version is in the environment

node -v # should print v21.7.1

verifies the right NPM version is in the environment

npm -v # should print 10.5.0


### After NodeJs and Npm Installation, its time for you to install python and pip on your system.
### After Python Installation Follow Below Steps.......
##### In Case You Want To Install Pip here's the command to install in Linux
```sudo apt-get install python3-pip -y```

#### After Pip Installation you can install all requirements by pasting below command.

pip install -r irctc-captcha-solver/requirements.txt # <---- Make Sure You Run This Command From Code Folder.


#### Check If Everything Works Fine.... 
This Would Print **No base-64 String provided** Which Means You Have Followed Correctly at this point.

python irctc-captcha-solver/app.py ""


### Last Step That's It...........

npm install # <---- Make Sure You Run This Command From Code Folder. npx cypress run --headed --no-exit # <---- Make Sure You Run This Command From Code Folder.