Skip to content
Snippets Groups Projects
Commit 8b7d3cd8 authored by jurgenhaas's avatar jurgenhaas
Browse files

Force select command, even if covered by another element like e.g. if select2 widget is being used

parent 00473acf
No related branches found
No related tags found
No related merge requests found
Pipeline #820684 passed
......@@ -80,7 +80,7 @@ Cypress.Commands.add('assertFieldCondition', (data) => {
cy.get(field + '-' + data.radio).check()
}
else if (data.select !== undefined) {
cy.get(field).select(data.select)
cy.get(field).select(data.select, {force: true})
}
else if (data.value !== undefined) {
cy.get(field + '-value').type(data.value)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment