Skip to main content

Linking Automated Test Cases to Test Manager

Test Manager supports linking automated test runs directly to specific test cases using Test Case IDs. This feature enables better traceability and management of your automated testing workflow.

Currently, this feature is supported on HyperExecute and Web Automation tests.

To link an automated test run with a specific test case, add the tms.tc_id key in the lt:Options section of your test capabilities. Here is a sample configuration demonstrating how to include the tms.tc_id key in your script:

const capabilities = {
"lt:Options": {
"tms.tc_id": "TC-1470" // Link the test execution to the Test Case ID 'TC-1470'
}
};
  • lt:Options : A JSON object containing additional options for LambdaTest configurations.
  • tms.tc_id : The key used to link a test case in Test Manager. Replace "TC-1470" with your desired Test Case ID.
NOTE
  • Ensure the Test Case ID exists in Test Manager before linking.
  • The Test Case ID format should match exactly as shown in Test Manager
  • Each automated test run can be linked to one test case at a time

Test across 3000+ combinations of browsers, real devices & OS.

Book Demo

Help and Support

Related Articles