Find The Table Row With The Given Text And Print Its Index

Опубликовано: 08 Май 2023
на канале: gleb bahmutov
685
31

Let's write a short test that finds a table row with text. If the text is not there, the test fails. If the text is present, we get the index of the row by invoking the jQuery "index" method and using cy.log or cy.print to print it to the Command Log.
cy.contains('tr', 'Charles')
.invoke('index')
// cypress-map
.print('Found row %d')
Find this example at http://glebbahmutov.com/cypress-examp...