Uploaded June 2023 | Updated September 2026, 1 week ago
This video shows how to find an input element by its "value" attribute. You can find elements using the exact static value, or its prefix, or suffix, or even matching part of the string value. But what about the input elements with the value set dynamically by the application? You no longer have the attribute to select the element, you must filter the input elements yourself. For example, to find the input element with the string "0" in its current value you could write:
cy.get('input#area').type('404')
cy.get('input')
.filter(function (k, input) {
return input.value.includes('0')
})
.should('have.value', '404')
This recipe comes from glebbahmutov.com/cypress-examples
This video shows how to find an input element by its "value" attribute. You can find elements using the exact static value, or its prefix, or suffix, or even matching part of the string value. But what about the input elements with the value set dynamically by the application? You no longer have the attribute to select the element, you must filter the input elements yourself. For example, to find the input element with the string "0" in its current value you could write:
cy.get('input#area').type('404')
cy.get('input')
.filter(function (k, input) {
return input.value.includes('0')
})
.should('have.value', '404')
This recipe comes from glebbahmutov.com/cypress-examples










