You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The jQuery > :last Selector was deprecated in jQuery 3.4.0 released on April 10, 2019. See section "Deprecating positional selectors and the sunset of Sizzle", where it says:
jQuery 3.4.0 is deprecating :first, :last, :eq, :even, :odd, :lt, :gt, and :nth.
Suggestion
Review and revise all use of the deprecated jQuery positional selectors such as :first and :last, both in this repository and in the Cypress documentation repository.
cypress-example-kitchensink/cypress/e2e/2-advanced-examples/assertions.cy.js
Line 12 in 277e055
should be changed to
.find('tbody tr:last-child')
to get the last element. The:last-child
is accepted in CSS while not:last
.The text was updated successfully, but these errors were encountered: