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, duration hours minute second in high quality that is uploaded to the channel gleb bahmutov 25 July 2023. Share the link to the video on social media so that your subscribers and friends will also watch this video. This video clip has been viewed 605 times and liked it 28 visitors.