2023-01-14 19:31:01 -08:00
|
|
|
/// <reference types="cypress" />
|
2023-01-15 00:10:27 -08:00
|
|
|
describe('Topic Copy and Paste Suite', () => {
|
2023-01-14 19:31:01 -08:00
|
|
|
beforeEach(() => {
|
|
|
|
// Remove storage for autosave ...
|
|
|
|
cy.visit('/editor.html');
|
|
|
|
cy.waitEditorLoaded();
|
2023-01-15 00:10:27 -08:00
|
|
|
cy.focusTopicById(2);
|
2023-01-14 19:31:01 -08:00
|
|
|
});
|
|
|
|
|
|
|
|
it('Copy and Paste', () => {
|
|
|
|
cy.get(`[aria-label="Topic Style"]`).first().trigger('mouseover');
|
|
|
|
cy.get('body').type('{meta}c');
|
|
|
|
|
|
|
|
// Copy & Paste require permissions. More reseach needed.
|
|
|
|
// cy.get('body').type('{meta}v');
|
|
|
|
// cy.get('[test-id=50]').click();
|
|
|
|
// cy.matchImageSnapshot('copyandpaste');
|
|
|
|
});
|
|
|
|
});
|