Web verify value
Tool web_verify_value¶
Description¶
Verify the value of an element on the page. Supports checking: - TEXT: the text content of any element - VALUE: the input value of a form field (input, textarea, select) - ATTRIBUTE: the value of an HTML attribute
Command Class¶
xyz.block.trailblaze.playwright.tools.PlaywrightNativeVerifyValueTool
Registered PlaywrightNativeVerifyValueTool in ToolRegistry¶
Required Parameters¶
ref:StringElement ID (e.g., ‘e5’), ARIA descriptor (e.g., ‘textbox “Email”’), or CSS selector with css= prefix (e.g., ‘css=#email-input’).expected:StringThe expected value to verify against.
Optional Parameters¶
type:[ "TEXT", "VALUE", "ATTRIBUTE" ]attribute:StringThe attribute name to check (required when type is ATTRIBUTE).element:StringHuman-readable description of the element being verified, for logging.reasoning:String
NOTE: THIS IS GENERATED DOCUMENTATION