Skip to content

Selectors

Selectors are how you tell Tapsmith which UI element to interact with. Tapsmith exposes them as Playwright-style getBy* methods on Device and ElementHandle. The guiding principle: tests should interact with the app the way users do.

Selectors that reflect what users see and what assistive technologies read are preferred over selectors that depend on implementation details. This makes your tests more resilient to refactors and ensures your app remains accessible.

PriorityMethodsWhen to use
1 (preferred)getByRole(), getByText(), getByDescription()Default choice. Reflects what users see.
2 (acceptable)getByPlaceholder()For text inputs without an associated label.
3 (escape hatch)getByTestId(), locator({ id }), locator({ className })When no user-visible attribute works.
4 (discouraged)locator({ xpath })Last resort, Android-only.

Tapsmith supports both Android and iOS. Most selectors work identically on both platforms, but there is one important difference to be aware of when writing cross-platform tests.

On iOS, when a component has an explicit accessibilityLabel, child text elements are hidden from the accessibility tree. The parent becomes a single accessible element with only its label visible. On Android, child text remains individually queryable through UIAutomator.

// React Native component
<Pressable accessibilityLabel="Login Form" accessibilityRole="button">
<Text>Login Form</Text>
<Text>Text inputs, buttons, focus/blur, keyboard</Text> {/* ← hidden on iOS */}
</Pressable>

On Android, device.getByText("Text inputs, buttons, focus/blur, keyboard") finds the child Text element. On iOS, this text does not exist in the accessibility tree — only the parent with description "Login Form" is visible.

Recommended cross-platform patterns:

  1. Target the parent by role or description, not the child text:

    await device.getByRole("button", { name: "Login Form" }).tap()
    await device.getByDescription("Login Form").tap()
  2. Use getByTestId() for elements that must be individually addressable:

    await expect(device.getByTestId("login-description")).toBeVisible()
  3. Use a separately accessible status element for verifying state changes:

    // Instead of checking child text inside a labeled container:
    // ✗ await expect(device.getByText("Long pressed!")).toBeVisible()
    // Check a dedicated status element with its own testID:
    // ✓ await expect(device.locator({ id: "last-gesture" })).toHaveText("Last gesture: Long press")

Priority 1 — Accessible Locators (Preferred)

Section titled “Priority 1 — Accessible Locators (Preferred)”

These match what real users and assistive technologies see. They should be your default choice.

Find an element by its accessibility role, optionally filtered by its accessible name. This is the top recommended locator because it verifies your app is accessible while also being resilient to implementation changes.

// Find a button labeled "Submit"
await device.getByRole("button", { name: "Submit" }).tap()
// Find a text field labeled "Email"
await device.getByRole("textfield", { name: "Email" }).type("[email protected]")
// Find a checkbox
await device.getByRole("checkbox", { name: "Remember me" }).tap()
// Find a switch toggle
await device.getByRole("switch", { name: "Dark mode" }).tap()

Supported roles map to platform-native element types. On iOS, many React Native components render as XCUIElementTypeOther — Tapsmith identifies roles from accessibility traits (e.g. a Pressable with accessibilityRole="button" gets the button trait) and falls back to matching .other elements by name. Native iOS and Android apps use typed elements that map directly.

RoleAndroid classesiOS types
buttonButton, ImageButton, Material/AppCompat variantsXCUIElementTypeButton, .other with button trait
textfieldEditTextXCUIElementTypeTextField, XCUIElementTypeSecureTextField
checkboxCheckBoxXCUIElementTypeCheckBox, .other (RN fallback)
switchSwitchXCUIElementTypeSwitch, XCUIElementTypeToggle
radiobuttonRadioButtonXCUIElementTypeRadioButton, .other (RN fallback)
headingRN accessibilityRole="header" / native isHeading.other with header trait, XCUIElementTypeStaticText with header trait
linkRN accessibilityRole="link"XCUIElementTypeLink, .other with link trait
imageImageView or RN accessibilityRole="image"XCUIElementTypeImage, .other with image trait
textTextViewXCUIElementTypeStaticText
alertRN accessibilityRole="alert".other (RN — matched by name)
progressbarProgressBarXCUIElementTypeProgressIndicator
seekbar / sliderSeekBarXCUIElementTypeSlider, .other with adjustable trait
comboboxRN accessibilityRole="combobox".other (RN — matched by name)
searchfieldSearchViewXCUIElementTypeSearchField, .other with search trait
spinnerSpinnerXCUIElementTypePicker, XCUIElementTypeActivityIndicator
toolbarToolbarXCUIElementTypeToolbar
tabTabLayoutXCUIElementTypeTab, XCUIElementTypeTabBar

React Native note: RN components that set accessibilityRole (e.g. accessibilityRole="button") expose the corresponding iOS accessibility trait, and getByRole will find them. Components that don’t set accessibilityRole (common in many RN apps) render as generic XCUIElementTypeOther with no role — use getByText, getByPlaceholder, or getByDescription instead.

Making React Native apps testable (and accessible)

Section titled “Making React Native apps testable (and accessible)”

Adding accessibility props to your RN components makes them both testable with getByRole and accessible to screen readers — a single change that improves both. The key props:

// ✗ Invisible to getByRole — renders as generic XCUIElementTypeOther
<TouchableOpacity onPress={handleSubmit}>
<Text>Sign in</Text>
</TouchableOpacity>
// ✓ Found by getByRole("button", { name: "Sign in" })
<TouchableOpacity
onPress={handleSubmit}
accessibilityRole="button"
accessibilityLabel="Sign in"
>
<Text>Sign in</Text>
</TouchableOpacity>

Common components and their recommended props:

ComponentProps to addTapsmith selector
TouchableOpacity / PressableaccessibilityRole="button"getByRole("button", { name: "..." })
TextInputaccessibilityLabel="Email"getByRole("textfield", { name: "Email" }) or getByPlaceholder(...)
SwitchaccessibilityRole="switch", accessibilityLabel="..."getByRole("switch", { name: "..." })
ImageaccessibilityRole="image", accessibilityLabel="..."getByRole("image", { name: "..." })
Section headersaccessibilityRole="header"getByRole("heading", { name: "..." })
LinksaccessibilityRole="link"getByRole("link", { name: "..." })

Tip: If you can’t modify the app, getByText and getByPlaceholder work without any accessibility props. getByRole is preferred when the props are available because it verifies both the element’s function and its text, making tests more precise.

Find an element by its visible text content. Substring match by default, like Playwright. Pass { exact: true } for an exact match.

// Substring match — finds elements containing "Welcome"
await expect(device.getByText("Welcome")).toBeVisible()
// Exact match
await device.getByText("Sign In", { exact: true }).tap()
// Useful for dynamic content
await expect(device.getByText("3 items")).toBeVisible()

Strict mode: because of the substring default, getByText("Sign in") also matches longer text such as "Sign in to continue". A locator that resolves to more than one element throws a strict mode violation when you act or assert on it (instead of silently using the first match). Disambiguate with { exact: true }, getByRole(role, { name }), getByTestId(), or .first()/.nth()/.last(). Absence checks (toBeHidden, not.toBeVisible, waitFor({ state: "hidden" })) and multi-element APIs (count(), all(), toHaveCount) are exempt. See the API reference for the full rules. WebView locators do not enforce strict mode yet.

Find an element by its accessibility description. On Android this matches contentDescription; on iOS it matches accessibilityLabel. Use this for icon buttons, images, and elements where the accessible label differs from visible text.

On iOS, getByText also matches accessibilityLabel, so both work for text-bearing elements. Prefer getByDescription for elements that have an explicit accessibility description but no visible text (e.g. icon-only buttons).

// Tap an icon button with a description
await device.getByDescription("Close menu").tap()
// Verify an image is present
await expect(device.getByDescription("Profile photo")).toBeVisible()

Find an input by its placeholder / hint text. Useful for text fields that do not have a separate visible label.

await device.getByPlaceholder("Enter your email").type("[email protected]")
await device.getByPlaceholder("Password").type("secret123")

Priority 3 — Test IDs and Native Locators (Escape Hatch)

Section titled “Priority 3 — Test IDs and Native Locators (Escape Hatch)”

These are invisible to users. Use them only when no accessible attribute uniquely identifies the element. The ESLint plugin will warn when you reach for them.

Find an element by a dedicated test identifier.

await device.getByTestId("submit-button").tap()

On Android, getByTestId matches React Native’s testID prop (mapped to a content-description prefix). On iOS, it matches the accessibilityIdentifier.

Find an element by its native resource id. On Android this is the R.id.foo resource id; on iOS, the accessibilityIdentifier.

await device.locator({ id: "com.myapp:id/email_input" }).type("[email protected]")
// Short form also works if the package prefix is unambiguous
await device.locator({ id: "email_input" }).type("[email protected]")

Warning: Resource IDs are implementation details. They break when views are refactored, renamed, or replaced. Prefer accessible locators whenever possible.

Find an element by its native widget class name. Use this when no role mapping covers a custom widget.

await device.locator({ className: "com.myapp.widget.ColorPicker" }).tap()

Tip: For standard Android widgets, prefer getByRole(). The ESLint plugin warns when locator({ className }) is used for widgets that have well-known roles.

Priority 4 — XPath (Discouraged, Android-only)

Section titled “Priority 4 — XPath (Discouraged, Android-only)”

Find an element using an XPath expression on the view hierarchy. Fragile, verbose, tightly coupled to the view structure, and Android-only (iOS does not support XPath). Use only as a last resort.

// Custom compound view with no accessible attributes
await device.locator({
xpath: "//android.widget.LinearLayout[@index='2']/android.widget.Button[1]",
}).tap()

Warning: The ESLint plugin requires an explanatory comment on the same or preceding line whenever locator({ xpath }) is used. If you find yourself reaching for XPath, consider whether adding accessibility attributes to the app would be a better long-term solution.

getBy* and locator() are also available on every ElementHandle. Calling them on a parent locator scopes the search to its descendants — exactly like Playwright’s locator.locator(...).

// Find "Item 3" inside a specific list
const item = device.getByRole("list", { name: "Shopping cart" }).getByText("Item 3", { exact: true })
await expect(item).toBeVisible()
// Tap the delete button inside a specific row
await device.getByTestId("row-5").getByRole("button", { name: "Delete" }).tap()

Scoping is lazy — no queries are made until you call an action or assertion.

Follow this decision process:

  1. Can you identify the element by its role and name? Use getByRole().
  2. Does the element have unique visible text? Use getByText().
  3. Is it an icon or image with a description? Use getByDescription().
  4. Is it a text input with a placeholder? Use getByPlaceholder().
  5. None of the above work? Use getByTestId() or locator({ id }).
  6. Custom widget with no standard role? Use locator({ className }).
  7. Nothing else works on Android? Use locator({ xpath }) with an explanatory comment.

Tapsmith includes an ESLint plugin that enforces locator best practices in your test files.

// eslint.config.js (flat config)
import { eslintPlugin } from "tapsmith"
export default [
{
plugins: {
tapsmith: eslintPlugin,
},
rules: {
...eslintPlugin.configs.recommended.rules,
},
},
]
RuleDefaultDescription
tapsmith/prefer-rolewarnSuggests getByRole() instead of locator({ className }) for standard Android widgets.
tapsmith/no-bare-locator-xpatherrorRequires an explanatory comment when using locator({ xpath }).
tapsmith/prefer-accessible-selectorswarnSuggests accessible getters instead of getByTestId() or locator({ id }).