Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,20 @@ All notable changes to NativeProof are documented here. The format follows
[Keep a Changelog](https://keepachangelog.com/) and the project adheres to
[Semantic Versioning](https://semver.org/).

## 0.13.0

Visible-state locator filtering.

**Added**

- `getByRole(role, { visible: true | false })` (and `by.role`) keeps only elements the
toolkit reports on screen — iOS `visible="true"`, Android `displayed="true"`. Native
trees carry offscreen or shadow duplicates of the same role (a hidden SwiftUI text field
behind the focused one returns first in document order, so `fill()` types nowhere);
`{ visible: true }` picks the live instance. Composes with `name`/`checked`/`disabled`
and closes the gap that forced consumer suites onto raw
`-ios predicate string:... AND visible == 1` selectors.

## 0.12.0

Scrolling, selector discovery, and a hardened locator core.
Expand Down
52 changes: 2 additions & 50 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nativeproof",
"version": "0.12.0",
"version": "0.13.0",
"license": "MIT",
"type": "module",
"description": "Playwright-feeling native mobile E2E for Appium/WebdriverIO with runner-native tests, locators, expect, fixtures, and evidence.",
Expand Down