Check out this Pen I made!
Check out this Pen I made!
For further actions, you may consider blocking this person and/or reporting abuse
- locator('.cta')
: Fast but brittle- getByText('Click me')
: User-facing, but can miss broken accessibility- getByRole('button', { name: 'Click me' })
: Most robust, best for a11y- getByTestId('cta-button')
: Stable, but ignores UX
Top comments (0)