acoustic-lock-46014
10/26/2022, 5:10 PMCypress.Commands.add('yourCustomCommand', () => {
cy.wait(4000)
cy.get('body')
.then($body => {
if (${elementYouWantToClick/wait}.length) {
return true;
}
return false;
})
.then(boolean => {
if(boolean){
cy.get(${elementYouWantToClick).click();
} else {
cy.wait(100)
}
});
})