| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- const getIframeBody = () => {
- return cy
- .getByTestid('page-presentation-modal')
- .its('0.contentDocument').should('exist')
- .its('body').should('not.be.undefined')
- .then(cy.wrap)
- };
- context('Open presentation modal', () => {
- const ssPrefix = 'access-to-presentation-modal-';
- let connectSid: string | undefined;
- before(() => {
- // login
- cy.fixture("user-admin.json").then(user => {
- cy.login(user.username, user.password);
- });
- cy.getCookie('connect.sid').then(cookie => {
- connectSid = cookie?.value;
- });
- });
- beforeEach(() => {
- if (connectSid != null) {
- cy.setCookie('connect.sid', connectSid);
- }
- });
- it('PresentationModal for "/" is shown successfully', () => {
- cy.visit('/');
- cy.get('#grw-subnav-container').within(() => {
- cy.getByTestid('open-page-item-control-btn').click({force: true})
- cy.getByTestid('open-presentation-modal-btn').click({force: true})
- });
- getIframeBody().find('slides').should('exist');
- cy.screenshot(`${ssPrefix}-opne-top`, { capture: 'viewport' });
- });
- it('PresentationModal for "/Sandbox/Bootstrap4" is shown successfully', () => {
- cy.visit('/Sandbox/Bootstrap4');
- cy.get('#grw-subnav-container').within(() => {
- cy.getByTestid('open-page-item-control-btn').click({force: true})
- cy.getByTestid('open-presentation-modal-btn').click({force: true})
- });
- getIframeBody().find('slides').should('exist');
- cy.screenshot(`${ssPrefix}-open-bootstrap4`, { capture: 'viewport' });
- });
- it('PresentationModal for /Sandbox/Bootstrap4#Cards" is shown successfully', () => {
- cy.visit('/Sandbox/Bootstrap4#Cards');
- cy.get('#grw-subnav-container').within(() => {
- cy.getByTestid('open-page-item-control-btn').click({force: true})
- cy.getByTestid('open-presentation-modal-btn').click({force: true})
- });
- getIframeBody().find('slides').should('exist');
- cy.screenshot(`${ssPrefix}-open-bootstrap4-with-ancker-link`, { capture: 'viewport' });
- });
- });
|