Hello everyone, i want to make a conditional Test, because sometimes a cookie comes and sometime not. I made this, but it doesnt works :
cy.get('body', ).then($body => {
if ($body.find('button.success-btn').length > 0, {timeout: 10000}) {
cy.get('button.success-btn').click()
}
});
What is false? It tries to find the button anyway.