LambdaTest Autoheal Command Logs API
The Autoheal Command Logs API from LambdaTest — 1 operation(s) for autoheal command logs.
The Autoheal Command Logs API from LambdaTest — 1 operation(s) for autoheal command logs.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
find_apisBrowse and filter every API in the catalog.get_api_artifactsOne API's artifacts, grouped by type.get_openapiThe primary OpenAPI for this API.find_similar_apisAPIs that look like this one.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.curl "https://apis.io/api/v1/apis/lambdatest-autoheal-command-logs-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.
openapi: 3.2.0
info:
title: TestMu AI SmartUI API Documentation Autoheal Command Logs API
version: 1.0.1
servers:
- url: https://api.lambdatest.com/automation/smart-ui
- url: https://eu-api.lambdatest.com/automation/smart-ui
tags:
- name: Autoheal Command Logs
paths:
/autoheal/test/{test_id}:
get:
tags:
- Autoheal Command Logs
summary: Fetch autohealed commands data for a test
description: Retrieve all autohealed commands for a specific test session, including original and healed locators with execution duration.
operationId: getSeleniumAutohealedData
parameters:
- name: test_id
in: path
description: Test ID for which to fetch autohealed commands
required: true
style: simple
explode: false
schema:
type: string
example: DA-WIN-160849-1756966096614912604KKM
- name: limit
in: query
description: Maximum number of records to return (default 100)
required: false
style: form
explode: true
schema:
type: integer
minimum: 1
maximum: 1000
default: 100
example: 100
- name: offset
in: query
description: Number of records to skip for pagination (default 0)
required: false
style: form
explode: true
schema:
type: integer
minimum: 0
default: 0
example: 0
responses:
200:
description: Successfully retrieved autohealed commands data
content:
application/json:
schema:
$ref: '#/components/schemas/AutohealedCommandsResponse'
example:
status: success
message: null
data:
total_healed_commands: 11
test_id: DA-WIN-160849-1756966096614912604KKM
healed_commands:
- request_id: LT01K49NG343J2YDNEQ60HQVQY13-6NSZV-US-EAST-1
test_id: DA-WIN-160849-1756966096614912604KKM
original_locator:
using: css selector
value: '[class="list-unstyled"]>:nth-child(4)>input'
healed_locator:
using: css selector
value: input.custom-checkbox.ng-pristine.ng-untouched.ng-valid.ng-empty
duration: 349
- request_id: LT01K49NG2BMVQ50K6XF53K9VZHN-L2V78-US-EAST-1
test_id: DA-WIN-160849-1756966096614912604KKM
original_locator:
using: css selector
value: '[class="list-unstyled"]>:nth-child(3)>input'
healed_locator:
using: css selector
value: input.custom-checkbox.ng-pristine.ng-untouched.ng-valid.ng-empty
duration: 398
400:
description: Bad request - Invalid parameters
content:
application/json:
schema:
$ref: '#/components/schemas/BadRequest'
example:
status: fail
message: Invalid limit parameter
data: null
401:
description: Unauthorized - Authentication failed
content:
application/json:
schema:
$ref: '#/components/schemas/Unauthorized'
404:
description: Test not found or not accessible
content:
application/json:
schema:
$ref: '#/components/schemas/NotFound'
example:
status: fail
message: Test not found
data: null
500:
description: Internal server error
content:
application/json:
schema:
$ref: '#/components/schemas/InternalServerError'
example:
status: error
message: Failed to fetch autohealed data
data: null
security:
- basicAuth: []
components:
schemas:
Unauthorized:
type: object
properties:
status:
type: string
example: fail
message:
type: string
example: Unauthorized
data:
type:
- object
- 'null'
example: null
AutohealedCommandsResponse:
type: object
properties:
status:
type: string
example: success
message:
type:
- string
- 'null'
example: null
data:
$ref: '#/components/schemas/AutohealedCommandsData'
InternalServerError:
type: object
properties:
status:
type: string
example: error
message:
type: string
example: Failed to fetch autohealed data
data:
type:
- object
- 'null'
example: null
BadRequest:
type: object
properties:
status:
type: string
example: fail
message:
type: string
example: Invalid limit parameter
data:
type:
- object
- 'null'
example: null
LocatorData:
type: object
properties:
using:
type: string
description: The locator strategy used (e.g., css selector, xpath, id)
example: css selector
value:
type: string
description: The actual locator value
example: input.custom-checkbox.ng-pristine.ng-untouched.ng-valid.ng-empty
NotFound:
type: object
properties:
status:
type: string
example: fail
message:
type: string
example: Test not found
data:
type:
- object
- 'null'
example: null
AutohealedCommand:
type: object
properties:
request_id:
type: string
description: Unique request identifier for the command
example: LT01K49NG343J2YDNEQ60HQVQY13-6NSZV-US-EAST-1
test_id:
type: string
description: Test identifier
example: DA-WIN-160849-1756966096614912604KKM
original_locator:
$ref: '#/components/schemas/LocatorData'
healed_locator:
$ref: '#/components/schemas/LocatorData'
duration:
type: integer
description: Time taken to heal the locator in milliseconds
example: 349
AutohealedCommandsData:
type: object
properties:
total_healed_commands:
type: integer
description: Total number of autohealed commands found
example: 11
test_id:
type: string
description: The test ID for which autohealed commands were fetched
example: DA-WIN-160849-1756966096614912604KKM
healed_commands:
type: array
description: Array of autohealed command details
items:
$ref: '#/components/schemas/AutohealedCommand'
securitySchemes:
basicAuth:
type: http
scheme: basic