Nabin Hait | 74b8c99 | 2021-04-15 11:30:55 +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 | }); |