code
<example type="good" title="Single call for multiple operations"> <code>
browser_run_code: async (page) => { await page.goto('https://example.com'); await page.fill('#email', 'user@test.com'); await page.fill('#password', 'secret'); await page.click('button[type="submit"]'); } </code> </example>
code
<example type="avoid" title="Multiple individual tool calls"> <description>browser_navigate → browser_type → browser_type → browser_click</description> </example>