Город МОСКОВСКИЙ
00:02:18

Confirm The Index Of The Element With The Given Text

Аватар
JS Новичкам: Видеоуроки
Просмотры:
29
Дата загрузки:
29.11.2023 04:58
Длительность:
00:02:18
Категория:
Технологии и интернет

Описание

If we find an element by text using cy.contains command, we can confirm the found element's index among its siblings by invoking the jQuery "index" method https://api.jquery.com/index/. It yields the number, starting with zero. This makes checking the order of elements really easy.

// "Pears" is the third element in the list of fruits
// Let's confirm it
cy.contains('#fruits li', 'Pear')
.invoke('index')
.should('equal', 2)

Find this recipe among many examples at https://glebbahmutov.com/cypress-examples

Рекомендуемые видео