Rest Assured Setup
Step1: Download the required JAR files
Download Rest Assured Jar from https://github.com/rest-assured/rest-assured/wiki/Downloads as marked in the below picture.
Extract the downloaded file so that we can get the required JAR file.
Step2: Add a New Java Project in Eclipse IDE
Select File Mane > NEW > Project
Select ‘Java Project’ & Click on ‘Next’
Step3: Add a New Java Project in Eclipse IDE
Enter the name of the project
Step4: Add Jar Files in Project Build Path
Right-click on the project “YourProjectName.” Select Build Path->Configure Build Path.
Move to the Libraries tab and click on the “Add External JARs” option. It will open a pop-up for selecting the downloaded JARs.
Navigate to folder in which all the JARs ( extracted from earlier selenium download ) are available. Select all of them (using Ctrl+A) and then click on the “Open” button. It’ll add all the JAR files in your project’s build path.
Now click on the “OK” switch to close the window.