Skip to content

Commit

Permalink
Cypress test. Maintenance of popups visibility. (#2838)
Browse files Browse the repository at this point in the history
* Cypress test. Issue 2230.

* Typo fix

* rename the file
  • Loading branch information
dvkruchinin authored Mar 1, 2021
1 parent 105999b commit 5bd61a4
Showing 1 changed file with 28 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
// Copyright (C) 2021 Intel Corporation
//
// SPDX-License-Identifier: MIT

/// <reference types="cypress" />

import { taskName } from '../../support/const';

context('Check maintenance of popups visibility.', () => {
const issueId = '2230';

before(() => {
cy.openTaskJob(taskName);
});

describe(`Testing issue "${issueId}"`, () => {
it('Open a popover for draw an object and apply the "mouseout" event to it. The popover be visible.', () => {
cy.interactControlButton('draw-rectangle');
cy.get('.cvat-draw-rectangle-popover-visible').trigger('mouseout').wait(500);
cy.get('.cvat-draw-rectangle-popover-visible').should('exist');
});

it('Click to another element. The popover hidden.', () => {
cy.get('.cvat-canvas-container').click();
cy.get('.cvat-draw-rectangle-popover-visible').should('not.exist');
});
});
});

0 comments on commit 5bd61a4

Please sign in to comment.