You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: Update form tests to use correct response assertion format
- Fix form tests using incorrect response.response.code syntax
- Update to proper expect(response).toHaveResponse() pattern
- Correct expected code patterns to match actual generated Playwright syntax
- Add browser_fill_form_template tool to capabilities test lists
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <[email protected]>
thrownewError(`Could not find dropdown option with text: "${text}". Last error: ${lastErrorinstanceofError ? lastError.message : String(lastError)}`);
401
409
}
402
410
411
+
// Template-based form filling tool
412
+
constfillFormTemplate=defineTabTool({
413
+
capability: 'core',
414
+
schema: {
415
+
name: 'browser_fill_form_template',
416
+
title: 'Fill form using template',
417
+
description: 'Fill form fields using a pre-defined template. Much faster than regular form filling as it only requires simple key-value pairs instead of complex field definitions.',
0 commit comments