action lambdatest_screenshots { label: "Fetch specified screenshot details" description: "To fetch specified screenshot details" provider: lambdatest method: GET path: "/{test_id}" encoding: json input: { type: "object" properties: { test_id: { type: "string" } } required: ["test_id"] additionalProperties: false } output: { type: "object" properties: { callback_url: { type: "string" } defer_time: { type: "number" } screenshots: { type: "array" items: { type: "object" properties: { activity_id: { type: "string" } browser: { type: "string" } browser_version: { type: "string" } os: { type: "string" } resolution: { type: "string" } screenshot_url: { type: "string" } status: { type: "string" } thumbnail_url: { type: "string" } } } } test_id: { type: "string" } test_status: { type: "string" } url: { type: "string" } } } }