Closed bahmutov closed 2 years ago
Currently stops at the command with type: parent but that is not too accurate, since some commands are dual
type: parent
cy.get('[htmlfor="toggle-all"]') .if('visible') .click() .get('.clear-completed') .click() .else() .log('**nothing to complete**');
Here I expect the "if" branch to stop at "else()" but it stops at "get" and thus executes the .get('.clear-completed') command
.get('.clear-completed')
Need to keep traversing while the chainerId is is the same
chainerId
:tada: This issue has been resolved in version 1.4.3 :tada:
The release is available on:
Your semantic-release bot :package::rocket:
Currently stops at the command with
type: parent
but that is not too accurate, since some commands are dualHere I expect the "if" branch to stop at "else()" but it stops at "get" and thus executes the
.get('.clear-completed')
command