fix e2e #1450

Merged
alexm merged 4 commits from fix_e2e into dev 2023-04-17 12:20:07 +00:00
4 changed files with 5 additions and 3 deletions
Showing only changes of commit f97d169cbf - Show all commits

View File

@ -0,0 +1,2 @@
INSERT INTO `salix`.`ACL` (`model`, `property`, `accessType`, `permission`, `principalType`, `principalId`)
VALUES ('Defaulter', 'observationEmail', 'WRITE', 'ALLOW', 'ROLE', 'employee');
alexm marked this conversation as resolved Outdated

Jo ho posaria tabulat com en les fixtures

Jo ho posaria tabulat com en les fixtures

View File

@ -989,7 +989,7 @@ export default {
saveButton: 'vn-worker-basic-data button[type=submit]'
},
workerNotes: {
addNoteFloatButton: 'vn-float-button',
addNoteFloatButton: 'a vn-float-button',
alexm marked this conversation as resolved Outdated

No sé si se vol que tinga primer el nom del component (com posa en firstNoteText)

No sé si se vol que tinga primer el nom del component (com posa en firstNoteText)
note: 'vn-textarea[ng-model="$ctrl.note.text"]',
saveButton: 'button[type=submit]',
firstNoteText: 'vn-worker-note .text'

View File

@ -50,7 +50,7 @@ describe('Client defaulter path', () => {
expect(message.text).toContain(`The message can't be empty`);
});
it('shoul checked all defaulters', async() => {
it('should checked all defaulters', async() => {
await page.loginAndModule('insurance', 'client');
await page.accessToSection('client.defaulter');

View File

@ -7,7 +7,7 @@ describe('Worker Add notes path', () => {
beforeAll(async() => {
browser = await getBrowser();
page = browser.page;
await page.loginAndModule('employee', 'worker');
await page.loginAndModule('hr', 'worker');
await page.accessToSearchResult('Bruce Banner');
await page.accessToSection('worker.card.note.index');
});