Untitled
Anonymous
typescript
01/19/2026 10:02 PM
268 B
19
Indexable
// Option 1
page.getByRole('button', { name: 'Save' })
// Option 2
page.locator('button#btnSave')
// Option 3
page.locator('button').filter({ hasText: 'Save' })
// Option 4
page.getByText('Save')Editor is loading...
Leave a Comment