/**
  * @Then I should see :numberOfProducts products in the list
  */
 public function iShouldSeeProductsInTheList($numberOfProducts)
 {
     $foundRows = $this->indexPage->countItems();
     Assert::same((int) $numberOfProducts, $foundRows, '%s rows with products should appear on page, %s rows has been found');
 }