Results for "REST Assured"
Response Validation in REST Assured: Body, JsonPath & Fields
Validate API responses in REST Assured — response body with Hamcrest matchers, JSON and JsonPath, single/multiple field checks, and response time.…
POJO & Serialization in REST Assured: Java Objects to JSON
Learn POJO classes in REST Assured — serializing Java objects to JSON and deserializing JSON to Java objects using body(), as(), Jackson, and Gson.…
REST Assured Practice: API Chaining, Negative/Security & Data-Driven Testing
Practice REST Assured API Chaining, End-to-End workflows, Negative & Security Testing, SQL Injection, XSS, Rate Limiting, and Data-Driven Testing using multiple data…
JSON Schema Validation in REST Assured (Contract Testing)
Validate API responses against a JSON schema in REST Assured using matchesJsonSchemaInClasspath() — why it matters and how to handle schema changes.…
Authentication in REST Assured: Basic Auth, Bearer Token & OAuth 2.0
Handle authentication in REST Assured — Basic Auth, Bearer/JWT tokens, API keys, and OAuth 2.0 — including generating and passing tokens for secured APIs.…
REST Assured Fundamentals: REST APIs & SOAP vs REST Explained
Learn REST Assured fundamentals — what REST Assured is, REST API characteristics, why it's used for API automation, and SOAP vs REST — with examples.…
TestNG with REST Assured: Annotations, Setup, Priority & Groups
Integrate REST Assured with TestNG — annotations, @BeforeClass/@AfterClass setup and teardown, test priority, grouping, and parallel execution via testng.xml.…
Advanced REST Assured Validation: Nested JSON, Arrays & Dynamic Values
Validate nested JSON, arrays, dynamic values, and nulls in REST Assured, plus asserting headers and cookies and chaining extracted values across requests.…
REST Assured Real-Time Scenarios: Tokens, Chaining, Flaky APIs & Jenkins
Rest Assured real Time Scenarios — handling dynamic tokens, chaining APIs for end-to-end flows, flaky APIs, missing docs, and running tests via Maven in Jenkins.…
Logging & Response Extraction in REST Assured (log, JsonPath)
Learn REST Assured logging (log().all, log().ifValidationFails) and how to extract the response body as a string and pull values with JsonPath.…
Sending Requests in REST Assured: GET, POST, PUT, DELETE, PATCH
Send HTTP requests in REST Assured — GET, POST, PUT, DELETE, PATCH — plus passing query/path parameters, headers, and cookies with given/when/then.…
REST Assured Framework Design: Layers, Config, Test Data & Reports
Design a REST Assured framework — layered structure, base URI/base path, avoiding hardcoding with properties files, test data management, logging, and reporting.…
REST Assured Setup & Syntax: Maven, given/when/then & TestNG
Set up REST Assured — Maven dependencies, the given()/when()/then() BDD syntax, prerequisites, and configuring with TestNG and JUnit.…
REST Assured Practice: Authentication, Token Handling & Response Validation
Practice REST Assured authentication, token generation, token reuse, secured API validation, response validation, JSON schema validation, and Hamcrest assertions usi…
REST Assured Practice: HTTP Methods (CRUD) & Request Data Handling
Practice REST Assured HTTP methods including GET, POST, PUT, PATCH, DELETE, CRUD validation, idempotency, request payload creation, query parameters, path parameters…