From 1ed959fb527836bbdad89a4de74c8c5608f26a09 Mon Sep 17 00:00:00 2001 From: pratik-mahalle Date: Mon, 11 Aug 2025 13:17:57 +0530 Subject: [PATCH 1/2] fix: correct the docs version in the README Signed-off-by: pratik-mahalle --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b50083c63..9aa854776 100644 --- a/README.md +++ b/README.md @@ -120,10 +120,10 @@ MinAlertLevel = error ### Running Vale -1. Linting Documentation: To check all markdown files in versioned_docs/version-2.0.0/ for errors, run: +1. Linting Documentation: To check all markdown files in versioned_docs/version-3.0.0/ for errors, run: ```bash -vale versioned_docs/version-2.0.0/**/*.md +vale versioned_docs/version-3.0.0/**/*.md ``` 2. Review Errors: From 8a89a5c1f94308deb5bd2310528c96300a989fae Mon Sep 17 00:00:00 2001 From: pratik-mahalle Date: Mon, 11 Aug 2025 14:19:36 +0530 Subject: [PATCH 2/2] fix: some minor fixes Signed-off-by: pratik-mahalle --- .../version-3.0.0/running-keploy/generate-api-tests-using-ai.md | 2 +- .../running-keploy/review-and-improve-ai-generated-tests.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/versioned_docs/version-3.0.0/running-keploy/generate-api-tests-using-ai.md b/versioned_docs/version-3.0.0/running-keploy/generate-api-tests-using-ai.md index def6b1839..339042370 100644 --- a/versioned_docs/version-3.0.0/running-keploy/generate-api-tests-using-ai.md +++ b/versioned_docs/version-3.0.0/running-keploy/generate-api-tests-using-ai.md @@ -7,7 +7,7 @@ description: Learn how to use Keploy’s API Test Generator to generate high-qua This guide will help you generate automated API tests using Keploy's AI-based test engine by providing structured inputs like OpenAPI specs, curl commands, Postman collections, or live endpoints. -> 👉 If you want to record API flows by interacting with your web app through a browser, follow this guide instead: Record API Tests via Chrome Extension +> 👉 If you want to record API flows by interacting with your web app through a browser, follow this guide instead: [Record API Tests via Chrome Extension](https://keploy.io/docs/running-keploy/api-testing-chrome-extension/) ## Getting Started diff --git a/versioned_docs/version-3.0.0/running-keploy/review-and-improve-ai-generated-tests.md b/versioned_docs/version-3.0.0/running-keploy/review-and-improve-ai-generated-tests.md index 0dbaa6089..2d6cc25be 100644 --- a/versioned_docs/version-3.0.0/running-keploy/review-and-improve-ai-generated-tests.md +++ b/versioned_docs/version-3.0.0/running-keploy/review-and-improve-ai-generated-tests.md @@ -70,7 +70,7 @@ Mix-and-match them as needed—every example below can live inside the same `ass | **Header Exists** | Header key is present (value ignored). | `yaml
- type: header_exists
field: x-request-id
` | Reverse-proxy injects `x-request-id: 4b087…` | | **Header Matches** | Header value matches a **regex** pattern. | `yaml
- type: header_matches
field: set-cookie
pattern: "sessionId=.*; Path=/; HttpOnly"
` | `set-cookie: sessionId=abc123; Path=/; HttpOnly; SameSite=Lax` | -> **Tip ** +> **Tip** > Combine multiple assertions in one step to cover status, headers **and** body in a single round-trip. Every assertion is evaluated independently, so one failure pinpoints the exact mismatch. ## Edit and Manage Test Suites