I'm trying to check if an element exists or not. If the element exists, I want to click on the button X, I want to click on the button Y.
However, when the element does not exist Cypress throws an exception and it stops the test.
Code Sample:
let elementKey = '#up-picker'
Cypress.get('body').then($res=>{
if($res.find(elementKey).length>0){
// click on button X
}else{
// click on button Y
}
})
I have an element with this id, but sometimes because the logic in the UI changes it, Cypress can find this element.
I checked more posts in Stackoverflow and no answer works for me.
