Skip to content

Commit

Permalink
Fix case 28 (#3753)
Browse files Browse the repository at this point in the history
  • Loading branch information
dvkruchinin authored Oct 4, 2021
1 parent 51ee7cb commit 701168a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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
});

Expand Down

0 comments on commit 701168a

Please sign in to comment.