Get a queued job's result
get_jobUse this when keyboard_walk, simulate_condition, screen_reader_transcript or check_page_alt_text returned a job id instead of a result — never abandon the check, collect it here. Pass the job id the tool returned; if it is still running, call again in a few seconds. The payload is identical to the one the tool would have returned inline — the same fields, the same caps, the same void handling — so nothing has to be parsed differently because a page was slow. The per-response options below are read from this call rather than from the queued run, so a job can be collected with more detail than it was asked for without paying for a second browser run. Read-only.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| full | No | keyboard_walk and simulate_condition: return every selector each finding carries instead of the first 5, from the stored result. No page is loaded and nothing is charged, so this is how a truncated selector list is resolved. | |
| jobId | Yes | Job id returned by the tool that queued it. | |
| website | Yes | The website domain the job belongs to, e.g. "example.com". | |
| includeRing | No | keyboard_walk only: include the tab ring, one entry per stop. Off by default. | |
| includeNodes | No | screen_reader_transcript only: include the per-announcement array with node ids and roles. Off by default; its text duplicates the transcript. | |
| includeMeasurements | No | simulate_condition only: include the raw per-condition measurements. Off by default. |