DEV Community

Cover image for devops,
Jay
Jay

Posted on

1 1

devops,

I like developing web applications with Python and Django but the main one is the awesome community and projects around the language and framework.

Top comments (0)

Image of Checkly

4 Playwright Locators Explained: Which One Should You Use?

- 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

Watch video