describe('Translations', () => { const tableType = 'itemTypeI18n'; const translationSelect = '[data-cy="Table_select"]'; const firstRow = '.q-virtual-scroll__content > :nth-child(1) > :nth-child(4)'; beforeEach(() => { cy.viewport(1280, 720); cy.login('buyer'); cy.visit(`/#/worker/translations`); }); it('should load translations and modify', () => { cy.get('[data-cy="Table_select"]').click(); cy.selectOption(translationSelect, tableType); cy.get(firstRow).type('test'); cy.saveCard(); }); });