DEV Community

João Paulo de C. Lima
João Paulo de C. Lima

Posted on

Quick Tip #5

Are you a Mac or Linux user and you need to connect to a SQL Server DB?
Check this out: Azure Data Studio

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