2.3 KiB
2.3 KiB
Selector Strategies
Hierarchy (Most to Least Resilient)
1. Role-Based (Best)
page.getByRole('button', { name: 'Submit' })
page.getByRole('link', { name: /sign up/i })
page.getByRole('heading', { level: 1 })
page.getByRole('textbox', { name: 'Email' })
2. Test IDs (Explicit)
page.getByTestId('checkout-button')
page.getByTestId('product-card')
Configure in playwright.config.ts:
use: { testIdAttribute: 'data-testid' }
3. Label/Placeholder (Forms)
page.getByLabel('Email address')
page.getByPlaceholder('Enter your email')
4. Text Content (Visible)
page.getByText('Add to Cart', { exact: true })
page.getByText(/welcome/i) // regex for flexibility
5. CSS (Last Resort)
// Avoid these patterns:
page.locator('.css-1a2b3c') // generated class
page.locator('div > span:nth-child(2)') // positional
page.locator('#root > div > div > button') // deep nesting
// Acceptable:
page.locator('[data-product-id="123"]') // semantic attribute
page.locator('form.login-form') // stable class
Chaining and Filtering
page.getByRole('listitem').filter({ hasText: 'Product A' })
page.getByTestId('cart').getByRole('button', { name: 'Remove' })
Prefer filtering or parent-child chaining over first(), last(), or nth(). Use positional locators only when order is the thing being tested or there is genuinely no stable identity.
If a locator matches multiple elements, do not silence strictness with position by default. Disambiguate the locator until it represents the intended target.
Frame Handling
// Named frame
const frame = page.frameLocator('iframe[name="checkout"]')
frame.getByRole('button', { name: 'Pay' }).click()
// Frame by URL
page.frameLocator('iframe[src*="stripe"]')
Shadow DOM
// Playwright pierces shadow DOM by default
page.locator('my-component').getByRole('button')
Common Mistakes
| Mistake | Better |
|---|---|
page.locator('button').click() |
page.getByRole('button', { name: 'Submit' }).click() |
page.getByTestId('product-card').first() |
filter or chain until only the intended card matches |
nth-child(3) |
Filter by text, role, test ID, or parent context |
//div[@class="xyz"]/span[2] |
Role-based or test ID |