Skip to content

Commit

Permalink
Fix case 28 (#3693)
Browse files Browse the repository at this point in the history
  • Loading branch information
dvkruchinin authored Sep 22, 2021
1 parent d91ba56 commit 87246c5
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').click();
cy.get('.cvat-issues-sidebar-next-frame').should('not.have.css', 'pointer-events', 'none').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').click();
cy.get('.cvat-issues-sidebar-previous-frame').should('not.have.css', 'pointer-events', 'none').click();
cy.checkFrameNum(0); // Frame changed to 0
});

Expand Down

0 comments on commit 87246c5

Please sign in to comment.