191 lines
6.3 KiB
JavaScript
Executable File
191 lines
6.3 KiB
JavaScript
Executable File
// ***********************************************
|
|
// This example commands.js shows you how to
|
|
// create various custom commands and overwrite
|
|
// existing commands.
|
|
//
|
|
// For more comprehensive examples of custom
|
|
// commands please read more here:
|
|
// https://on.cypress.io/custom-commands
|
|
// ***********************************************
|
|
//
|
|
//
|
|
// -- This is a parent command --
|
|
// Cypress.Commands.add("login", (email, password) => { ... })
|
|
//
|
|
//
|
|
// -- This is a child command --
|
|
// Cypress.Commands.add("drag", { prevSubject: 'element'}, (subject, options) => { ... })
|
|
//
|
|
//
|
|
// -- This is a dual command --
|
|
// Cypress.Commands.add("dismiss", { prevSubject: 'optional'}, (subject, options) => { ... })
|
|
//
|
|
//
|
|
// -- This is will overwrite an existing command --
|
|
// Cypress.Commands.overwrite("visit", (originalFn, url, options) => { ... })
|
|
|
|
// DO NOT REMOVE
|
|
// Imports Quasar Cypress AE predefined commands
|
|
// import { registerCommands } from '@quasar/quasar-app-extension-testing-e2e-cypress';
|
|
Cypress.Commands.add('login', (user) => {
|
|
//cy.visit('/#/login');
|
|
cy.request({
|
|
method: 'POST',
|
|
url: '/api/accounts/login',
|
|
body: {
|
|
user: user,
|
|
password: 'nightmare',
|
|
},
|
|
}).then((response) => {
|
|
window.localStorage.setItem('token', response.body.token);
|
|
});
|
|
});
|
|
|
|
Cypress.Commands.add('waitForElement', (element) => {
|
|
cy.get(element, { timeout: 2000 }).should('be.visible');
|
|
});
|
|
|
|
Cypress.Commands.add('getValue', (selector) => {
|
|
cy.get(selector).then(($el) => {
|
|
if ($el.find('.q-checkbox__inner').length > 0) {
|
|
return cy.get(selector + '.q-checkbox__inner');
|
|
}
|
|
// Si es un QSelect
|
|
if ($el.find('.q-select__dropdown-icon').length) {
|
|
return cy.get(
|
|
selector +
|
|
'> .q-field > .q-field__inner > .q-field__control > .q-field__control-container > .q-field__native > input'
|
|
);
|
|
}
|
|
// Puedes añadir un log o lanzar un error si el elemento no es reconocido
|
|
cy.log('Elemento no soportado');
|
|
});
|
|
});
|
|
|
|
// Fill Inputs
|
|
Cypress.Commands.add('selectOption', (selector, option) => {
|
|
cy.get(selector).find('.q-select__dropdown-icon').click();
|
|
cy.get('.q-menu .q-item').contains(option).click();
|
|
});
|
|
|
|
Cypress.Commands.add('checkOption', (selector) => {
|
|
cy.get(selector).find('.q-checkbox__inner').click();
|
|
});
|
|
|
|
// Global buttons
|
|
Cypress.Commands.add('saveCard', () => {
|
|
cy.get('[title="Save"]').click();
|
|
});
|
|
Cypress.Commands.add('resetCard', () => {
|
|
cy.get('[title="Reset"]').click();
|
|
});
|
|
Cypress.Commands.add('removeCard', () => {
|
|
cy.get('[title="Remove"]').click();
|
|
});
|
|
Cypress.Commands.add('addCard', () => {
|
|
cy.waitForElement('tbody');
|
|
cy.get('.q-page-sticky > div > .q-btn').click();
|
|
});
|
|
Cypress.Commands.add('clickConfirm', () => {
|
|
cy.waitForElement('.q-dialog__inner > .q-card');
|
|
cy.get('.q-card__actions > .q-btn--unelevated > .q-btn__content > .block').click();
|
|
});
|
|
|
|
Cypress.Commands.add('notificationHas', (selector, text) => {
|
|
cy.get(selector).should('have.text', text);
|
|
});
|
|
|
|
Cypress.Commands.add('fillRow', (rowSelector, data) => {
|
|
// Usar el selector proporcionado para obtener la fila deseada
|
|
cy.waitForElement('tbody');
|
|
cy.get(rowSelector).as('currentRow');
|
|
|
|
data.forEach((value, index) => {
|
|
if (value === null) return;
|
|
cy.get('@currentRow')
|
|
.find('td')
|
|
.eq(index)
|
|
.then((td) => {
|
|
if (td.find('.q-select__dropdown-icon').length) {
|
|
cy.selectOption(td, value);
|
|
} else if (td.find('.q-checkbox__inner').length && value) {
|
|
cy.checkOption(td);
|
|
} else if (td.find('input[type="text"]') && value)
|
|
cy.get(td).find('input').type(value);
|
|
});
|
|
});
|
|
});
|
|
|
|
Cypress.Commands.add('addRow', () => {
|
|
cy.waitForElement('tbody');
|
|
cy.get('.q-page-sticky > div > .q-btn > .q-btn__content').click();
|
|
});
|
|
|
|
Cypress.Commands.add('validateRow', (rowSelector, expectedValues) => {
|
|
cy.waitForElement('tbody');
|
|
cy.get(rowSelector).within(() => {
|
|
for (const [index, value] of expectedValues.entries()) {
|
|
cy.log('CHECKING ', index, value);
|
|
if (typeof value == 'boolean') {
|
|
const prefix = value ? '' : 'not.';
|
|
cy.getValue(`:nth-child(${index + 1})`).should(`${prefix}be.checked`);
|
|
continue;
|
|
}
|
|
cy.getValue(`:nth-child(${index + 1})`).should('have.value', value);
|
|
}
|
|
});
|
|
});
|
|
|
|
Cypress.Commands.add('removeRow', (rowIndex) => {
|
|
let rowsBefore;
|
|
cy.get('tbody > tr:visible')
|
|
.its('length')
|
|
.then((length) => {
|
|
cy.get('.q-checkbox').eq(rowIndex).click();
|
|
cy.removeCard();
|
|
cy.get('.q-dialog button').eq(2).click();
|
|
rowsBefore = length;
|
|
})
|
|
.then(() => {
|
|
// Check the existence of tbody before performing the second assertion.
|
|
cy.get('tbody').then(($tbody) => {
|
|
if ($tbody.length > 0)
|
|
cy.get('tbody > tr:visible').should('have.length', rowsBefore - 1);
|
|
});
|
|
});
|
|
});
|
|
Cypress.Commands.add('openListSummary', (row) => {
|
|
cy.get('.card-list-body .actions .q-btn:nth-child(2)').eq(row).click();
|
|
});
|
|
|
|
Cypress.Commands.add('openRightMenu', (element) => {
|
|
if (element) cy.waitForElement(element);
|
|
cy.get('#actions-append').click();
|
|
});
|
|
|
|
Cypress.Commands.add('openLeftMenu', (element) => {
|
|
if (element) cy.waitForElement(element);
|
|
cy.get('.q-toolbar > .q-btn--round.q-btn--dense > .q-btn__content > .q-icon').click();
|
|
});
|
|
Cypress.Commands.add('closeLeftMenu', (element) => {
|
|
if (element) cy.waitForElement(element);
|
|
cy.get('.fullscreen').click();
|
|
});
|
|
|
|
Cypress.Commands.add('clearSearchbar', (element) => {
|
|
if (element) cy.waitForElement(element);
|
|
cy.get('#searchbar > form > label > div:nth-child(1) input').clear();
|
|
});
|
|
|
|
Cypress.Commands.add('writeSearchbar', (value) => {
|
|
cy.get('#searchbar > form > label > div:nth-child(1) input').type(value);
|
|
});
|
|
Cypress.Commands.add('validateContent', (selector, expectedValue) => {
|
|
cy.get(selector).should('have.text', expectedValue);
|
|
});
|
|
|
|
Cypress.Commands.add('openActionsDescriptor', () => {
|
|
cy.get('.descriptor > .header > .q-btn').click();
|
|
});
|
|
// registerCommands();
|