salix/e2e/paths/client-module/06_add_address_notes.spec.js

64 lines
2.3 KiB
JavaScript
Raw Normal View History

import selectors from '../../helpers/selectors.js';
import createNightmare from '../../helpers/helpers';
2017-12-15 09:07:52 +00:00
describe('Add address notes path', () => {
const nightmare = createNightmare();
2017-12-15 09:07:52 +00:00
it('should click on the Clients button of the top bar menu', () => {
return nightmare
2017-12-15 09:07:52 +00:00
.waitToClick(selectors.globalItems.applicationsMenuButton)
.wait(selectors.globalItems.applicationsMenuVisible)
.waitToClick(selectors.globalItems.clientsButton)
.wait(selectors.clientsIndex.createClientButton)
.parsedUrl()
2017-12-15 09:07:52 +00:00
.then(url => {
expect(url.hash).toEqual('#!/clients');
});
2017-12-15 09:07:52 +00:00
});
it('should search for the user Bruce Banner', () => {
return nightmare
2017-12-15 09:07:52 +00:00
.wait(selectors.clientsIndex.searchResult)
.type(selectors.clientsIndex.searchClientInput, 'Bruce Banner')
.click(selectors.clientsIndex.searchButton)
.waitForNumberOfElements(selectors.clientsIndex.searchResult, 1)
.countSearchResults(selectors.clientsIndex.searchResult)
.then(result => {
expect(result).toEqual(1);
});
2017-12-15 09:07:52 +00:00
});
it(`should click on the search result to access to the client addresses`, () => {
return nightmare
2017-12-15 09:07:52 +00:00
.waitForTextInElement(selectors.clientsIndex.searchResult, 'Bruce Banner')
.waitToClick(selectors.clientsIndex.searchResult)
.waitToClick(selectors.clientAddresses.addressesButton)
.waitForURL('addresses/list')
2017-12-15 09:07:52 +00:00
.url()
.then(url => {
expect(url).toContain('addresses/list');
});
2017-12-15 09:07:52 +00:00
});
it(`should click on the edit icon of the default address`, () => {
return nightmare
.waitForTextInElement(selectors.clientAddresses.defaultAddress, 'Somewhere in Thailand')
.waitToClick(selectors.clientAddresses.firstEditButton)
.waitForURL('/edit')
2017-12-15 11:51:06 +00:00
.url()
2017-12-15 09:07:52 +00:00
.then(result => {
expect(result).toContain('/edit');
});
2017-12-15 09:07:52 +00:00
});
// it('should add as many notes as observation types', () => {
// return nightmare
// .waitToClick(selectors.clientAddresses.defaultCheckboxInput)
// .waitToClick(selectors.clientFiscalData.saveButton)
// .waitForSnackbar()
// .then(result => {
// expect(result).toContain('Some fields are invalid');
// })
2018-02-15 09:03:49 +00:00
// });
2017-12-15 09:07:52 +00:00
});