Cypress test. Maintenance of popups visibility. (#2838)

* Cypress test. Issue 2230.

* Typo fix

* rename the file
main
Dmitry Kruchinin 5 years ago committed by GitHub
parent 105999b5e4
commit 5bd61a43a4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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');
});
});
});
Loading…
Cancel
Save