From f5b901762ccf0a25c7a7ed7481156ca1c16dd34c Mon Sep 17 00:00:00 2001 From: root Date: Tue, 23 Dec 2025 22:44:35 +0000 Subject: [PATCH] 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 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- bin/route-debug.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/route-debug.js b/bin/route-debug.js index 0f5d30a56..dcbe7a3d5 100755 --- a/bin/route-debug.js +++ b/bin/route-debug.js @@ -51,7 +51,7 @@ function parse_args() { console.log(' --storage Dump localStorage and sessionStorage contents'); console.log(' --full Enable all display options for maximum info'); console.log(' --eval= 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= Navigation timeout in milliseconds (minimum 30000ms, default 30000ms)'); console.log(' --console-debug-filter= Filter console_debug to specific channel'); console.log(' --console-debug-benchmark Include benchmark timing in console_debug');