Steel MCP Server

Official

wait

Use this tool when a page appears to be loading or not fully rendered. Common scenarios include: when elements are missing from a screenshot that should be there, when a page looks incomplete or broken, when dynamic content is still loading, or when a previous action (like clicking a button) hasn't fully processed yet. Waits for a specified number of seconds (up to 10) to allow the page to finish loading or rendering.

Input Schema

NameRequiredDescriptionDefault
secondsYesNumber of seconds to wait (max 10). Start with a smaller value (2-3 seconds) and increase if needed.

Input Schema (JSON Schema)

{ "properties": { "seconds": { "description": "Number of seconds to wait (max 10). Start with a smaller value (2-3 seconds) and increase if needed.", "maximum": 10, "minimum": 0, "type": "number" } }, "required": [ "seconds" ], "type": "object" }