blob: 3d6ed5d0d89df4d02a3a3e33b3ca7c29ff83412a [file] [log] [blame]
Nabin Hait74b8c992021-04-15 11:30:55 +05301
2context('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});