salix-front/test/cypress/integration/VnLocation.spec.js

52 lines
1.9 KiB
JavaScript
Raw Normal View History

2024-03-06 09:19:14 +00:00
const locationOptions = '[role="listbox"] > div.q-virtual-scroll__content > .q-item';
2024-01-24 07:30:09 +00:00
describe('VnLocation', () => {
2024-03-06 09:19:14 +00:00
describe('Create', () => {
const inputLocation =
':nth-child(3) > :nth-child(1) > .q-field > .q-field__inner > .q-field__control';
2024-02-02 13:52:19 +00:00
beforeEach(() => {
cy.viewport(1280, 720);
cy.login('developer');
cy.visit('/#/worker/create');
cy.waitForElement('.q-card');
});
2024-01-24 07:30:09 +00:00
2024-03-06 09:19:14 +00:00
it('Show all options', function () {
cy.get(inputLocation).click();
cy.get(locationOptions).should('have.length', 5);
2024-02-02 13:52:19 +00:00
});
2024-01-24 07:30:09 +00:00
2024-03-06 09:19:14 +00:00
it('input filter location as "al"', function () {
2024-02-02 13:52:19 +00:00
cy.get(inputLocation).click();
cy.get(inputLocation).clear();
cy.get(inputLocation).type('al');
2024-03-06 09:24:20 +00:00
cy.get(locationOptions).should('have.length', 3);
2024-02-02 13:52:19 +00:00
});
2024-03-06 09:19:14 +00:00
it('input filter location as "ecuador"', function () {
2024-02-02 13:52:19 +00:00
cy.get(inputLocation).click();
cy.get(inputLocation).clear();
cy.get(inputLocation).type('ecuador');
2024-03-06 09:19:14 +00:00
cy.get(locationOptions).should('have.length', 1);
2024-02-02 13:52:19 +00:00
cy.get(`${locationOptions}:nth-child(1)`).click();
2024-03-06 09:19:14 +00:00
cy.get(
':nth-child(3) > :nth-child(1) > .q-field > .q-field__inner > .q-field__control > :nth-child(2) > .q-icon'
).click();
2024-02-02 13:52:19 +00:00
});
});
2024-03-06 09:19:14 +00:00
describe('Fiscal-data', () => {
const inputLocation =
':nth-child(6) > :nth-child(1) > .q-field > .q-field__inner > .q-field__control';
2024-02-02 13:41:59 +00:00
beforeEach(() => {
cy.viewport(1280, 720);
cy.login('developer');
2024-03-06 09:19:14 +00:00
cy.visit('/#/supplier/567/fiscal-data', { timeout: 2000 });
2024-02-02 13:41:59 +00:00
cy.waitForElement('.q-card');
});
2024-03-06 09:19:14 +00:00
it('Show all options', function () {
2024-02-02 13:41:59 +00:00
cy.get(inputLocation).click();
2024-02-02 13:52:19 +00:00
cy.get(locationOptions).should('have.length', 1);
2024-02-02 13:41:59 +00:00
});
2024-01-24 07:30:09 +00:00
});
2024-03-06 09:19:14 +00:00
});