From 4b5fc78f712bbd52cd94301aade6139e34e5ebdc Mon Sep 17 00:00:00 2001 From: Chris Tate Date: Sun, 15 Mar 2026 14:05:01 -0500 Subject: [PATCH] chore: add patch changeset for release (#838) --- .changeset/release-mms4chk5.md | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .changeset/release-mms4chk5.md diff --git a/.changeset/release-mms4chk5.md b/.changeset/release-mms4chk5.md new file mode 100644 index 0000000..e287b3d --- /dev/null +++ b/.changeset/release-mms4chk5.md @@ -0,0 +1,8 @@ +--- +"agent-browser": patch +--- + +### Bug Fixes + +- **Material Design checkbox/radio parity** - Restored Playwright-parity behavior for `check`/`uncheck` actions on Material Design controls. These components hide the native `` off-screen and use overlay elements that intercept coordinate-based clicks; the actions now detect this pattern and fall back to a JS `.click()` to correctly toggle state. Also improves `ischecked` to handle nested hidden inputs and ARIA-only checkboxes (#837) +- **Punctuation handling in `type` command** - Fixed incorrect virtual key (VK) codes being used for punctuation characters (e.g. `.`, `@`) in the `type` action, which previously caused those characters to be dropped or mistyped (#836)