Skip to content

Commit

Permalink
changed fix
Browse files Browse the repository at this point in the history
  • Loading branch information
klakhov committed Sep 24, 2024
1 parent a5ef9d7 commit 463f256
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/cypress/e2e/features/ground_truth_jobs.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,12 +89,12 @@ context('Ground truth jobs', () => {
}

function openManagementTab() {
cy.get('.cvat-task-page-actions-button').should('exist').and('be.visible');
cy.clickInTaskMenu('Quality control', true);
cy.get('.cvat-task-control-tabs')
.within(() => {
cy.contains('Management').click();
});
cy.get('.cvat-quality-control-management-tab').should('exist').and('be.visible');
}

before(() => {
Expand Down Expand Up @@ -225,9 +225,9 @@ context('Ground truth jobs', () => {
)).then((jobResponse) => {
groundTruthJobID = jobResponse.jobID;
}).then(() => {
cy.visit(`/tasks/${taskID}`);
cy.get('.cvat-task-details').should('exist').and('be.visible');
openManagementTab();
cy.visit(`/tasks/${taskID}/quality-control#management`);
cy.get('.cvat-quality-control-management-tab').should('exist').and('be.visible');
cy.get('.cvat-annotations-quality-allocation-table-summary').should('exist').and('be.visible');
});
});

Expand Down

0 comments on commit 463f256

Please sign in to comment.