From f861f076e41e07bf0d049f13bc2ac73405b86c15 Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Mon, 27 Apr 2026 17:03:24 +0200 Subject: [PATCH] test: drop 'text=' prefix from charlie locators charlie now treats bare strings as exact-match (was substring) and RegExp as the explicit fuzzy escape hatch. The 'text=' prefix has been removed and now throws a migration error from charlie. Made-with: Cursor --- test/test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test.js b/test/test.js index ec61880..7aca1b3 100644 --- a/test/test.js +++ b/test/test.js @@ -28,8 +28,8 @@ describe('Application life cycle test', function () { async function logout() { await goto(`https://${app.fqdn}`, 'Actions'); - await click('text=Actions'); - await click('text=Log Out'); + await click('Actions'); + await click('Log Out'); await waitFor('css=#user'); }