qitops 0.1.0

Software Quality Assurance CLI for API, Performance, Security, and Web Testing
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
    "name": "Data-Driven Test",
    "description": "A simple data-driven test",
    "url": "https://jsonplaceholder.typicode.com/posts/{{id}}",
    "method": "GET",
    "headers": {
        "Accept": "application/json"
    },
    "expected_status": 200,
    "assertions": [
        {
            "jsonpath": "$.title",
            "operator": "contains",
            "value": "{{title_contains}}"
        }
    ]
}