Fix incorrect data-sid selector in route-debug help example

Fix Form_Utils to use component.$sid() instead of data-sid selector
Add response helper functions and use _message as reserved metadata key

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
root
2025-12-23 22:44:35 +00:00
parent 69af4e87d4
commit f5b901762c

View File

@@ -51,7 +51,7 @@ function parse_args() {
console.log(' --storage Dump localStorage and sessionStorage contents'); console.log(' --storage Dump localStorage and sessionStorage contents');
console.log(' --full Enable all display options for maximum info'); console.log(' --full Enable all display options for maximum info');
console.log(' --eval=<code> Execute async JavaScript after page loads (supports await)'); console.log(' --eval=<code> Execute async JavaScript after page loads (supports await)');
console.log(' Example: --eval="$(\'[data-sid=btn_edit]\').click(); await new Promise(r => setTimeout(r, 2000));"'); console.log(' Example: --eval="$(\'.btn-primary\').first().click(); await new Promise(r => setTimeout(r, 2000));"');
console.log(' --timeout=<ms> Navigation timeout in milliseconds (minimum 30000ms, default 30000ms)'); console.log(' --timeout=<ms> Navigation timeout in milliseconds (minimum 30000ms, default 30000ms)');
console.log(' --console-debug-filter=<ch> Filter console_debug to specific channel'); console.log(' --console-debug-filter=<ch> Filter console_debug to specific channel');
console.log(' --console-debug-benchmark Include benchmark timing in console_debug'); console.log(' --console-debug-benchmark Include benchmark timing in console_debug');