/**
  * Verify gallery on product page(front-end) is displayed correctly
  *
  * @return string|null
  */
 protected function verifyGallery()
 {
     if ($this->productView->isGalleryVisible()) {
         return null;
     }
     return 'Gallery for product ' . $this->product->getName() . ' is not visible.';
 }