echoing-tent-95037
01/19/2023, 4:59 PMshould('not.be.visible') for the svg elements of the animation but it always passes even though the animation is still going. Any input on how to handle this is much appreciated.
If it helps our svg for this is:
<svg xmlns="http://www.w3.org/2000/svg" width="80px" height="80px" viewBox="0 0 100 100" preserveAspectRatio="xMidYMid">
<circle cx="50" cy="50" fill="none" stroke="#3F80F3" stroke-width="10" r="30" stroke-dasharray="141.37166941154067 49.12388980384689" transform="rotate(182.503 50 50)">
<animateTransform attributeName="transform" type="rotate" calcMode="linear" values="0 50 50;360 50 50" keyTimes="0;1" dur="2s" begin="0s" repeatCount="indefinite" />
</circle>
</svg>gray-kilobyte-89541
01/19/2023, 5:09 PMechoing-tent-95037
01/19/2023, 5:16 PMechoing-tent-95037
01/19/2023, 5:16 PMechoing-tent-95037
01/19/2023, 5:17 PMechoing-tent-95037
01/19/2023, 5:17 PMCypress.Commands.add('waitForSpinner', () => {
cy.get('body').then((body) => {
if (body.find('[id="SPINNER"]').length > 0) {
cy.getById('SPINNER').should('not.be.visible');
}
});
});gray-kilobyte-89541
01/19/2023, 5:18 PMechoing-tent-95037
01/19/2023, 5:20 PMechoing-tent-95037
01/19/2023, 5:21 PMgray-kilobyte-89541
01/19/2023, 5:53 PMechoing-tent-95037
01/19/2023, 6:02 PMexistgray-kilobyte-89541
01/19/2023, 6:31 PMechoing-tent-95037
01/19/2023, 7:41 PM