Test Execution Status Updater
Estimated reading: 1 minute
This component automates the update of Test Case execution results (e.g., Passed, Failed, Blocked) after test runs. It enables accurate reporting and progress tracking in QA workflows.
Parameters
| Parameter | Description |
|---|---|
| Organization | Name of the Azure DevOps organization where the project resides. |
| Project | Name of the Azure DevOps project to manage Test Cases. |
| PAT (Personal Access Token) | Personal Access Token used for authentication with Azure DevOps, granting necessary permissions to access and modify test artifacts. |
| Test Data | JSON-formatted data containing details of the Test Cases, including titles, descriptions, steps, and expected results. |
Sample Test Data
{
"pages": [
{
"page_title": "Login Page",
"page_url": "https://www.saucedemo.com/login.html",
"testcases": [
{
"testplan_id": "203548",
"test_suite_id": "203550",
"testcase_id": "203551",
"title": "Successful login with correct credentials",
"status": "Passed"
},
{
"testplan_id": "203548",
"test_suite_id": "203550",
"testcase_id": "203552",
"title": "Login with incorrect password",
"status": "Passed"
}
]
}
]
}