/**
  * Create New StoreGroup
  *
  * @param StoreGroup $storeGroup
  * @return void
  */
 public function test(StoreGroup $storeGroup)
 {
     //Steps
     $this->storeIndex->open();
     $this->storeIndex->getGridPageActions()->createStoreGroup();
     $this->newGroupIndex->getEditFormGroup()->fill($storeGroup);
     $this->newGroupIndex->getFormPageActions()->save();
 }