2018-02-17 22:27:15 +03:00
|
|
|
describe('Menu', () => {
|
2018-03-15 23:11:20 +03:00
|
|
|
beforeEach(() => {
|
2018-02-17 22:27:15 +03:00
|
|
|
cy.visit('e2e/standalone.html');
|
|
|
|
});
|
|
|
|
|
2018-07-16 18:29:36 +03:00
|
|
|
it('should have valid items count', () => {
|
2022-01-24 12:14:31 +03:00
|
|
|
cy.get('.menu-content').find('li').should('have.length', 34);
|
2018-02-17 22:27:15 +03:00
|
|
|
});
|
|
|
|
|
2018-07-16 18:29:36 +03:00
|
|
|
it('should sync active menu items while scroll', () => {
|
|
|
|
cy.contains('h1', 'Introduction')
|
2018-02-17 22:27:15 +03:00
|
|
|
.scrollIntoView()
|
2018-08-22 13:22:58 +03:00
|
|
|
.get('[role=menuitem].active')
|
2018-02-17 22:27:15 +03:00
|
|
|
.should('have.text', 'Introduction');
|
|
|
|
|
2018-07-16 18:29:36 +03:00
|
|
|
cy.contains('h2', 'Add a new pet to the store')
|
2018-02-17 22:27:15 +03:00
|
|
|
.scrollIntoView()
|
2018-08-22 13:22:58 +03:00
|
|
|
.wait(100)
|
|
|
|
.get('[role=menuitem].active')
|
|
|
|
.children()
|
2018-02-17 22:27:15 +03:00
|
|
|
.last()
|
|
|
|
.should('have.text', 'Add a new pet to the store')
|
|
|
|
.should('be.visible');
|
|
|
|
});
|
|
|
|
|
2021-09-27 12:21:59 +03:00
|
|
|
it('should sync active menu items while scroll back and scroll again', () => {
|
|
|
|
cy.contains('h2', 'Add a new pet to the store')
|
|
|
|
.scrollIntoView()
|
|
|
|
.wait(100)
|
|
|
|
.get('[role=menuitem].active')
|
|
|
|
.children()
|
|
|
|
.last()
|
|
|
|
.should('have.text', 'Add a new pet to the store')
|
|
|
|
.should('be.visible');
|
|
|
|
|
2022-01-24 12:14:31 +03:00
|
|
|
cy.contains('h1', 'Swagger Petstore').scrollIntoView().wait(100);
|
2021-09-27 12:21:59 +03:00
|
|
|
|
|
|
|
cy.contains('h1', 'Introduction')
|
|
|
|
.scrollIntoView()
|
|
|
|
.wait(100)
|
|
|
|
.get('[role=menuitem].active')
|
|
|
|
.should('have.text', 'Introduction');
|
|
|
|
|
|
|
|
cy.url().should('include', '#section/Introduction');
|
|
|
|
});
|
|
|
|
|
2018-07-16 18:29:36 +03:00
|
|
|
it('should update URL hash when clicking on menu items', () => {
|
2018-03-19 17:33:26 +03:00
|
|
|
cy.contains('[role=menuitem].-depth1', 'pet').click({ force: true });
|
2018-02-17 22:27:15 +03:00
|
|
|
cy.location('hash').should('equal', '#tag/pet');
|
|
|
|
|
2018-07-18 13:05:19 +03:00
|
|
|
cy.contains('[role=menuitem]', 'Find pet by ID').click({ force: true });
|
2022-04-12 12:19:15 +03:00
|
|
|
cy.location('hash').should('equal', '#tag/pet/operation/getPetById');
|
2018-02-17 22:27:15 +03:00
|
|
|
});
|
|
|
|
|
2018-07-16 18:29:36 +03:00
|
|
|
it('should deactivate tag when other is activated', () => {
|
2018-03-19 17:33:26 +03:00
|
|
|
const petItem = () => cy.contains('[role=menuitem].-depth1', 'pet');
|
2018-02-17 22:27:15 +03:00
|
|
|
|
2022-01-24 12:14:31 +03:00
|
|
|
petItem().click({ force: true }).should('have.class', 'active');
|
2018-07-18 13:05:19 +03:00
|
|
|
cy.contains('[role=menuitem].-depth1', 'store').click({ force: true });
|
2018-02-17 22:27:15 +03:00
|
|
|
petItem().should('not.have.class', 'active');
|
|
|
|
});
|
2022-01-24 12:14:31 +03:00
|
|
|
|
|
|
|
it('should be able to open a response object to see more details', () => {
|
|
|
|
cy.contains('h2', 'Find pet by ID')
|
|
|
|
.scrollIntoView()
|
|
|
|
.wait(100)
|
|
|
|
.parent()
|
|
|
|
.find('div h3')
|
|
|
|
.should('have.text', 'Responses')
|
|
|
|
.parent()
|
|
|
|
.find('div:first button')
|
|
|
|
.click()
|
|
|
|
.should('have.attr', 'aria-expanded', 'true')
|
|
|
|
.parent()
|
|
|
|
.find('div h5')
|
|
|
|
.then($h5 => $h5[0].firstChild!.nodeValue!.trim())
|
|
|
|
.should('eq', 'Response Schema:');
|
|
|
|
});
|
2022-04-15 16:53:36 +03:00
|
|
|
|
|
|
|
it('should be able to open the operation details when the operation IDs have quotes', () => {
|
|
|
|
cy.visit('e2e/standalone-3-1.html');
|
|
|
|
cy.get('label span[title="pet"]').click({ multiple: true, force: true });
|
|
|
|
cy.get('li').contains('OperationId with quotes').click({ multiple: true, force: true });
|
|
|
|
cy.get('h2').contains('OperationId with quotes').should('be.visible');
|
|
|
|
cy.url().should('include', 'deletePetBy%22Id');
|
|
|
|
});
|
|
|
|
|
|
|
|
it.only('should encode URL when the operation IDs have backslashes', () => {
|
|
|
|
cy.visit('e2e/standalone-3-1.html');
|
|
|
|
cy.get('label span[title="pet"]').click({ multiple: true, force: true });
|
|
|
|
cy.get('li').contains('OperationId with backslash').click({ multiple: true, force: true });
|
|
|
|
cy.get('h2').contains('OperationId with backslash').should('be.visible');
|
|
|
|
cy.url().should('include', 'delete%5CPetById');
|
|
|
|
});
|
2018-02-17 22:27:15 +03:00
|
|
|
});
|