HOME > Development > Expert Guide of API Automation using RestAssured and JAVA

Expert Guide of API Automation using RestAssured and JAVA

  • Development
  • Mar 07, 2025
SynopsisExperts Guide of API Automation using RestAssured and JAVA, a...
Expert Guide of API Automation using RestAssured and JAVA  No.1

Experts Guide of API Automation using RestAssured and JAVA, available at $59.99, has an average rating of 4.45, with 140 lectures, based on 31 reviews, and has 4439 subscribers.

You will learn about Ready to write basic to advance level of API automation testcase in Java Programming & RestAssured Ready to design REST API Testing automation framework from scratch with BDD Cucumber Detailed understanding of Java Concepts, Programming and its implementation in RestAssured including OOPS Ready to face basic to advance level REST API automation interviews with RestAssured Design and build a industry level API automation framework step-by-step Confidently work with complex JSONs JSON PATH in request and responses This course is ideal for individuals who are Testers looking to Test REST Api without any automation tool or Developers looking to consume REST API in Java It is particularly useful for Testers looking to Test REST Api without any automation tool or Developers looking to consume REST API in Java.

Enroll now: Experts Guide of API Automation using RestAssured and JAVA

Summary

Title: Experts Guide of API Automation using RestAssured and JAVA

Price: $59.99

Average Rating: 4.45

Number of Lectures: 140

Number of Published Lectures: 140

Number of Curriculum Items: 140

Number of Published Curriculum Objects: 140

Original Price: $27.99

Quality Status: approved

Status: Live

What You Will Learn

  • Ready to write basic to advance level of API automation testcase in Java Programming & RestAssured
  • Ready to design REST API Testing automation framework from scratch with BDD Cucumber
  • Detailed understanding of Java Concepts, Programming and its implementation in RestAssured including OOPS
  • Ready to face basic to advance level REST API automation interviews with RestAssured
  • Design and build a industry level API automation framework step-by-step
  • Confidently work with complex JSONs JSON PATH in request and responses
  • Who Should Attend

  • Testers looking to Test REST Api without any automation tool
  • Developers looking to consume REST API in Java
  • Target Audiences

  • Testers looking to Test REST Api without any automation tool
  • Developers looking to consume REST API in Java
  • REST Assured API is one of the most popular library when it comes to automating the REST APIs. Most of the today’s web applications are backed by the Micro services architecture and the REST APIs.

    REST stands for REpresentational State Transfer. REST is web standards based architecture and uses HTTP Protocol for data communication.

    In REST architecture, a REST Server simply provides access to resources and REST client accesses and presents the resources.

    What topics are covered in this course?

  • API Basics

  • JSON & JSON Path

  • End to End Setup

  • Java Programming Basics

  • Complex POJO Example

  • Full JSON body matching

  • Parameterization using TestNG Data provider

  • Rest Assured – Request Specification

  • Rest Assured – Response Specification

  • Rest Assured – Automate Post, Put, Del

  • Rest Assured – Multiple ways to send request payload

  • Rest Assured – Complex JSON in request body

  • Rest Assured – Request Parameters

  • Rest Assured – JSON Schema Validation

  • Rest Assured – Logging Filters

  • Rest Assured – Configs

  • TestNG Basic to Expert

  • Collections

  • Serialization & De-serialization: POJOs

  • HashMap to JSON object

  • ArrayList to JSON array

  • Complex POJO Example

  • Full JSON body matching

  • Framework Development->

  • BDD Framework with Features

  • Scalable Framework Structure

  • Configurations

  • Reporting

  • Automate positive and negative scenarios

  • Data driven using TestNG Data Provider

  • Cucumber Implementation

  • Best Practices

  • Property and Configuration

  • Integration with Git

  • Integration with Jenkins

  • Tool, Library & Technology

  • Eclipse

  • Rest Assured

  • TestNG

  • Cucumber

  • Reporting

  • Java

  • Allure Reports

  • Outcome of this course

    1. Expertise in Java Programming

    2. Expertise in API Concepts

    3. Able to design End to End API Automation Framework

    4.  Ready to face Automation interviews

    Course Curriculum

    Chapter 1: Introduction & Setup

    Lecture 1: Agenda of this Course

    Lecture 2: Setup Java on Windows Machine

    Lecture 3: Setup Eclipse on Windows Machine

    Lecture 4: Environment Setup- Rest Assured

    Lecture 5: Setup Sample Applications for Practice

    Chapter 2: ***** STEP 1 ***** WebService/API Basics | Advantage

    Lecture 1: What is WebService

    Lecture 2: WebService Example

    Lecture 3: Advantage of WebService over WebBased Application

    Lecture 4: Difference between API and WebService

    Lecture 5: Different type of Services : Soap and Rest

    Lecture 6: Micro Service Introduction

    Lecture 7: Rest API : common Methods – GET, POST, PUT, DELETE

    Lecture 8: Pre-requisites before starting API Testing

    Chapter 3: Manual API Testing using Postman

    Lecture 1: Introduction to Postman (One of most popular tool for REST API testing)

    Lecture 2: Postman Setup : Step by Step Setup Instructions

    Lecture 3: Postman window walkthrough

    Lecture 4: Basic GET request : Fetch data from application

    Lecture 5: Basic POST request : Insert New data to Application

    Lecture 6: Basic PUT request : Update Data of Application

    Lecture 7: Basic DELETE request : Delete application Data

    Lecture 8: End to End test case with verifications

    Lecture 9: Add Verification : Status Code, Body Data & Response time

    Lecture 10: Validate Header Content

    Lecture 11: Validate Data using JSON Path

    Chapter 4: Eclipse & Java Introduction | Lets Start basic programming

    Lecture 1: Introduction to Eclipse | Walkthrough to Eclipse Environment

    Lecture 2: Start Java programming – Project & Package

    Lecture 3: How to Define Variables & Constants in Java

    Lecture 4: What is Class ? & How to access class members by using Object

    Lecture 5: Methods(Functions) in Detail : Different types of Methods

    Lecture 6: Constructor | What is Constructor and How to Write Constructor

    Lecture 7: Where to use Constructors (Practical Usecase)

    Lecture 8: Read data from user at runtime : Take User Input

    Chapter 5: Step by Step Condition Handling | How and Where to use Condition Handling

    Lecture 1: Simple Condition Handling – IF – Else (Handle 2 conditions)

    Lecture 2: Multiple Condition Handling (If – Else if – else) with practice exercise

    Lecture 3: Condition handling with Logical OR / AND

    Lecture 4: Nested Condition Handling (Condition inside Condition)

    Chapter 6: Step by Step Looping | For – While – Do While – For Each

    Lecture 1: For Loop : Run Loop with increment and Decrement Order

    Lecture 2: While Loop

    Lecture 3: Do While Loop

    Lecture 4: For Each loop : Advance For Loop for Group of Data

    Lecture 5: Nested Loop : Loop inside Loop

    Chapter 7: String Handling : What is String, Use different functions available in String

    Lecture 1: String Handling – Part1 : What is String -String Functions(Length, Upper, Lower)

    Lecture 2: String Handling – Part2 : String Functions- Replace, SubString, Split, Concat

    Lecture 3: String Handling – Part3 : String Comparison

    Lecture 4: Array In Java

    Lecture 5: Multi dimension Array

    Chapter 8: File Handling : Read and Write File Data

    Lecture 1: File Reader – File Reader (Read data character by character)

    Lecture 2: File Read – Buffered Reader (Read data line by line)

    Lecture 3: File Write – File Writer : Write data character by character

    Lecture 4: File Write – BufferedWriter : Write data line by line

    Chapter 9: OOPS in Detail (Object Oriented Programming)

    Lecture 1: Encapsulation : Wrapping up data & functions in single unit

    Lecture 2: Inheritance : Transfer Property of a class to another class

    Lecture 3: Types of Inheritance – Single Inheritance

    Lecture 4: Types of Inheritance – Multilevel Inheritance

    Lecture 5: Types of Inheritance – Hierarchical Inheritance

    Lecture 6: Polymorphism : Data Overriding (Override Parent Class Methods)

    Lecture 7: Overloading (Compile Time Polymorphism)

    Lecture 8: Overriding (Runtime Polymorphism)

    Lecture 9: Abstraction with Interview Questions

    Lecture 10: Interface : To Achieve 100% abstraction

    Lecture 11: Multiple Inheritance using Interface

    Lecture 12: Hybrid Inheritance using Interface

    Chapter 10: Access Modifiers : Access Class members at different places

    Lecture 1: public modifier : Access members throughout package

    Lecture 2: private modifier : Access members within class

    Lecture 3: default modifier : Access members within package

    Lecture 4: protected modifier : Access members within package and child class

    Lecture 5: Access Modifiers on class level

    Chapter 11: Type Casting

    Lecture 1: Implicit & Explicit Type Casting

    Lecture 2: Explicit Type Casting – By Classes

    Chapter 12: Exception Handling in Java

    Lecture 1: What is Exception & Exception Handling

    Lecture 2: Throws keyword in exception handing

    Lecture 3: Exception Handling using Try-Catch

    Lecture 4: Exception Handling: Multi Catch block

    Lecture 5: Finally keyword

    Lecture 6: Throw keyword

    Chapter 13: Important Keywords in Java{You Can Skip this Section if comfortable in Java}

    Lecture 1: This Keyword

    Lecture 2: Final Keyword

    Lecture 3: Super Keyword

    Lecture 4: Static Keyword

    Chapter 14: Debugging

    Lecture 1: What is Debugging

    Lecture 2: Difference between Step Into | Step Over | Step Return

    Lecture 3: Exception Breakpoint

    Chapter 15: Learn Basics of MAVEN

    Lecture 1: What is Maven | Why as Tester we use MAVEN

    Lecture 2: How to setup maven project

    Lecture 3: Understand POM.xml | Add Project Dependencies |Check Maven Repository Workflow

    Instructors

  • Expert Guide of API Automation using RestAssured and JAVA  No.2
    Automation World
    Automation expert at Automation World
  • Rating Distribution

  • 1 stars: 1 votes
  • 2 stars: 2 votes
  • 3 stars: 3 votes
  • 4 stars: 4 votes
  • 5 stars: 21 votes
  • Frequently Asked Questions

    How long do I have access to the course materials?

    You can view and review the lecture materials indefinitely, like an on-demand channel.

    Can I take my courses with me wherever I go?

    Definitely! If you have an internet connection, courses on Udemy are available on any device at any time. If you don’t have an internet connection, some instructors also let their students download course lectures. That’s up to the instructor though, so make sure you get on their good side!