salix/e2e/paths/client-module/08_add_notes.spec.js

73 lines
2.8 KiB
JavaScript
Raw Normal View History

import selectors from '../../helpers/selectors.js';
import createNightmare from '../../helpers/nightmare';
2017-12-15 09:07:52 +00:00
describe('Client', () => {
describe('Add notes path', () => {
const nightmare = createNightmare();
2017-12-15 09:07:52 +00:00
beforeAll(() => {
return nightmare
2018-10-30 07:51:18 +00:00
.waitForLogin('employee');
});
2018-10-30 07:51:18 +00:00
it('should click on the Clients button of the top bar menu', async ()=> {
const url = await nightmare
.waitToClick(selectors.globalItems.applicationsMenuButton)
.wait(selectors.globalItems.applicationsMenuVisible)
.waitToClick(selectors.globalItems.clientsButton)
.wait(selectors.clientsIndex.createClientButton)
.parsedUrl();
expect(url.hash).toEqual('#!/client/index');
});
2017-12-15 09:07:52 +00:00
2018-10-30 07:51:18 +00:00
it('should search for the user Bruce Banner', async () => {
const resultCount = await nightmare
.wait(selectors.clientsIndex.searchResult)
.type(selectors.clientsIndex.searchClientInput, 'Bruce Banner')
.click(selectors.clientsIndex.searchButton)
.waitForNumberOfElements(selectors.clientsIndex.searchResult, 1)
.countElement(selectors.clientsIndex.searchResult);
expect(resultCount).toEqual(1);
});
2017-12-15 09:07:52 +00:00
2018-10-30 07:51:18 +00:00
it(`should click on the search result to access to the client's notes`, async () => {
const url = await nightmare
.waitForTextInElement(selectors.clientsIndex.searchResult, 'Bruce Banner')
.waitToClick(selectors.clientsIndex.searchResult)
.waitToClick(selectors.clientNotes.notesButton)
.waitForURL('note/index')
.url();
expect(url).toContain('note/index');
});
2017-12-15 09:07:52 +00:00
2018-10-30 07:51:18 +00:00
it(`should click on the add note button`, async () => {
const url = await nightmare
.waitToClick(selectors.clientNotes.addNoteFloatButton)
.waitForURL('/note/create')
.url();
expect(url).toContain('/note/create');
});
2017-12-15 09:07:52 +00:00
2018-10-30 07:51:18 +00:00
it(`should create a note`, async () => {
const result = await nightmare
.type(selectors.clientNotes.noteInput, 'Meeting with Black Widow 21st 9am')
.click(selectors.clientNotes.saveButton)
.waitForLastSnackbar();
expect(result).toEqual('Data saved!');
});
2017-12-15 09:07:52 +00:00
2018-10-30 07:51:18 +00:00
it('should confirm the note was created', async () => {
const result = await nightmare
.wait(selectors.clientNotes.firstNoteText)
.getInnerText(selectors.clientNotes.firstNoteText);
expect(result).toEqual('Meeting with Black Widow 21st 9am');
});
2017-12-15 09:07:52 +00:00
});
});