2019-12-23 10:34:28 +00:00
|
|
|
import {
|
|
|
|
visitAndApproveStorage, openMainMenu
|
|
|
|
} from '../../support/ui-test-helper.js';
|
|
|
|
|
|
|
|
describe('UI - Export tests', function () {
|
|
|
|
beforeEach(() => {
|
|
|
|
visitAndApproveStorage();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('Editor - No parameters: Has export button', () => {
|
|
|
|
openMainMenu();
|
|
|
|
cy.get('#tool_export');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('Editor - No parameters: Export button clicking; dialog opens', () => {
|
|
|
|
openMainMenu();
|
2021-05-12 23:00:09 +00:00
|
|
|
cy.get('#tool_export').click({ force: true });
|
2019-12-23 10:34:28 +00:00
|
|
|
cy.get('#dialog_content select');
|
|
|
|
});
|
|
|
|
});
|