Back to Nx

Update Selector Playground Api

packages/cypress/src/migrations/update-22-1-0/update-selector-playground-api.md

22.7.1740 B
Original Source

Update the Selector Playground API

Cypress v15 renamed Cypress.SelectorPlayground to Cypress.ElementSelector and removed the deprecated onElement option when calling Cypress.ElementSelector.defaults(). This migration updates existing Cypress support files to use the new API.

Read more in the migration guide.

Examples

Before
ts
Cypress.SelectorPlayground.defaults({
  selectorPriority: ['data-cy'],
  onElement: (el) => el,
});
After
ts
Cypress.ElementSelector.defaults({
  selectorPriority: ['data-cy'],
});