bland-pharmacist-88362
06/23/2022, 9:26 AMlet found = false;
cy.get('mat-panel-title').should('be.visible').each(($el, index) => {
cy.wrap($el).click();
cy.get('body').then(($body) => {
if ($body.find('.startButton').filter(':visible').length) {
console.log($body.find('.startButton').filter(':visible'));
found = true;
}
console.log(found);
if (found) return false;
})
// need to find button with class startButton
});