/**
  * Create customer group
  *
  * @param CustomerGroup $customerGroup
  */
 public function testCreateCustomerGroup(CustomerGroup $customerGroup)
 {
     //Steps
     $this->customerGroupIndex->open();
     $this->customerGroupIndex->getGridPageActions()->addNew();
     $this->customerGroupNew->getPageMainForm()->fill($customerGroup);
     $this->customerGroupNew->getPageMainActions()->save();
 }