Escape Regular Expression Text When Using cy.contains Command

Published: 25 July 2023
on channel: gleb bahmutov
605
28

This video shows how to escape special characters like "$", "[]", and "^" when creating regular expressions to use with cy.contains command. You can escape the characters yourself or use the Lodash method Cypress._.escapeRegExp bundled with Cypress to do it for you
const suffix = '$/day'
const regex = new RegExp(Cypress._.escapeRegExp(suffix))
cy.contains(regex).should('have.id', 'rate')
Find the full recipe at https://glebbahmutov.com/cypress-exam...


Watch video Escape Regular Expression Text When Using cy.contains Command online without registration, duration hours minute second in high quality. This video was added by user gleb bahmutov 25 July 2023, don't forget to share it with your friends and acquaintances, it has been viewed on our site 605 once and liked it 28 people.