Rucha Mahabal | 40793f4 | 2021-07-13 13:17:19 +0530 | [diff] [blame] | 1 | |
2 | context('Customer', () => { | ||||
3 | before(() => { | ||||
4 | cy.login(); | ||||
5 | }); | ||||
6 | it('Check Customer Group', () => { | ||||
7 | cy.visit(`app/customer/`); | ||||
8 | cy.get('.primary-action').click(); | ||||
9 | cy.wait(500); | ||||
10 | cy.get('.custom-actions > .btn').click(); | ||||
11 | cy.get_field('customer_group', 'Link').should('have.value', 'All Customer Groups'); | ||||
12 | }); | ||||
13 | }); |