|
| 1 | +// todo: make locales dynamically filled |
| 2 | +const locales = ['en-US', 'lt']; |
| 3 | + |
| 4 | +locales.concat(['']).sort((a,b) => a.length - b.length).forEach( |
| 5 | + (locale) => { |
| 6 | + describe('IndexPage (/' + locale + ')', () => { |
| 7 | + beforeEach(() => { |
| 8 | + cy.visit('/' + locale); |
| 9 | + }); |
| 10 | + |
| 11 | + it('clicking on header text changes background image', () => { |
| 12 | + cy.get('#main_card .text-h1').dblclick(); |
| 13 | + }); |
| 14 | + |
| 15 | + it('other links opening', () => { |
| 16 | + cy.get('#main_card .q-btn:last-child > .q-btn__content').click(); |
| 17 | + cy.get('#extra_links_modal input[name="search"]').click(); |
| 18 | + cy.get('#extra_links_modal input[name="search"]').type('git'); |
| 19 | + cy.get('#extra_links_modal .extra_links_modal__search-results') |
| 20 | + .should('have.class', 'extra_links_modal__search-results--non-empty'); |
| 21 | + cy.get('#extra_links_modal .extra_links_modal__search-results .q-item') |
| 22 | + .should('have.length', 2); |
| 23 | + |
| 24 | + cy.get('#extra_links_modal input[name="search"]').type('git-not-found'); |
| 25 | + cy.get('#extra_links_modal .extra_links_modal__search-results') |
| 26 | + .should('have.class', 'extra_links_modal__search-results--empty'); |
| 27 | + |
| 28 | + cy.get('#extra_links_modal input[name="search"]').type('{esc}'); |
| 29 | + }); |
| 30 | + |
| 31 | + locales.forEach( |
| 32 | + (locale2) => { |
| 33 | + it(`switching language into ${locale2}`, () => { |
| 34 | + cy.get('#language_switcher .q-icon').click(); |
| 35 | + cy.get(`#language_switcher [data-locale="${locale2}"]`).click(); |
| 36 | + cy.url().should('match', new RegExp(`\/${locale2}$`)); |
| 37 | + }); |
| 38 | + } |
| 39 | + ); |
| 40 | + |
| 41 | + }); |
| 42 | + } |
| 43 | +); |
| 44 | + |
| 45 | +/*cy.visit('http://localhost:9100/'); |
| 46 | +
|
| 47 | +cy.visit('http://localhost:9100/en-US'); |
| 48 | +cy.get('#f_eaa58fbc-b613-49dd-8120-4e34ecfded13').click();; |
| 49 | +
|
| 50 | +cy.get('.q-btn--standard:nth-child(2) > .q-btn__content').click(); |
| 51 | +cy.get('.q-page').click(); |
| 52 | +cy.get('#f_740cf067-e05d-4f10-9978-db6691274f0c').type('git'); |
| 53 | +cy.get('.q-pt-none').click(); |
| 54 | +cy.get('.block').click(); |
| 55 | +cy.get('.q-btn--fab').click(); |
| 56 | +cy.get('.disabled:nth-child(1) > .q-btn__content').click(); |
| 57 | +cy.get('.q-btn--outline:nth-child(2) > .q-btn__content').click(); |
| 58 | +cy.get('#f_56f30064-a097-474f-bc3f-672e4c9f9679').click(); |
| 59 | +cy.get('#f_56f30064-a097-474f-bc3f-672e4c9f9679').type('git'); |
| 60 | +cy.get('.block').click();*/ |
| 61 | + |
| 62 | + |
| 63 | +// ** The following code is an example to show you how to write some tests for your home page ** |
| 64 | +// |
| 65 | +// describe('Home page tests', () => { |
| 66 | +// beforeEach(() => { |
| 67 | +// cy.visit('/'); |
| 68 | +// }); |
| 69 | +// it('has pretty background', () => { |
| 70 | +// cy.dataCy('landing-wrapper') |
| 71 | +// .should('have.css', 'background').and('match', /(".+(\/img\/background).+\.png)/); |
| 72 | +// }); |
| 73 | +// it('has pretty logo', () => { |
| 74 | +// cy.dataCy('landing-wrapper img') |
| 75 | +// .should('have.class', 'logo-main') |
| 76 | +// .and('have.attr', 'src') |
| 77 | +// .and('match', /^(data:image\/svg\+xml).+/); |
| 78 | +// }); |
| 79 | +// it('has very important information', () => { |
| 80 | +// cy.dataCy('instruction-wrapper') |
| 81 | +// .should('contain', 'SETUP INSTRUCTIONS') |
| 82 | +// .and('contain', 'Configure Authentication') |
| 83 | +// .and('contain', 'Database Configuration and CRUD operations') |
| 84 | +// .and('contain', 'Continuous Integration & Continuous Deployment CI/CD'); |
| 85 | +// }); |
| 86 | +// }); |
0 commit comments