Fix case 28 (#3753)

main
Dmitry Kruchinin 4 years ago committed by GitHub
parent 51ee7cbca2
commit 701168af8a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -365,10 +365,10 @@ context('Review pipeline feature', () => {
it('Issue navigation. Navigation works and go only to frames with issues.', () => {
cy.get('.cvat-issues-sidebar-previous-frame').should('have.attr', 'style').and('contain', 'opacity: 0.5;'); // The element is not active
cy.get('.cvat-issues-sidebar-next-frame').should('not.have.css', 'pointer-events', 'none').click();
cy.get('.cvat-issues-sidebar-next-frame').trigger('mouseout').click();
cy.checkFrameNum(2); // Frame changed to 2
cy.get('.cvat-issues-sidebar-next-frame').should('have.attr', 'style').and('contain', 'opacity: 0.5;'); // The element is not active
cy.get('.cvat-issues-sidebar-previous-frame').should('not.have.css', 'pointer-events', 'none').click();
cy.get('.cvat-issues-sidebar-previous-frame').trigger('mouseout').click();
cy.checkFrameNum(0); // Frame changed to 0
});

Loading…
Cancel
Save