link_automated_test
Connect a Playwright automated test to a manual test case so its results appear on the case and it is marked as Automated.
Instructions
Link one automated (Playwright) test to one manual test case so automation results surface on the case. Requires write permission and the automation_linking plan feature (403 otherwise). Get pwTestId + fullTitle from list_automated_tests (or list_testcase, whose pw_test_id matches pwTestId — but fullTitle must still come from list_automated_tests). Rejects with 400 when the identity is unknown to this project, the pwTestId is already linked to the case, or the case already has 50 links. Linking sets the case automationStatus to Automated. For many cases in one call use bulk_link_automated_tests.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| caseId | Yes | Manual test case ID (Required). Internal _id or 'TC-123' style ID. | |
| pwTestId | Yes | Stable Playwright test id (pw_test_id) (Required). | |
| fullTitle | Yes | Server join key from list_automated_tests (Required) — never hand-built. | |
| projectId | Yes | Project ID (Required). The TestDino project identifier. | |
| displayTitle | No | Optional label shown on the case; defaults to the test title. |