/**
  * @Given product with :element :value should not be added
  */
 public function productWithNameShouldNotBeAdded($element, $value)
 {
     $this->iWantToBrowseProducts();
     Assert::false($this->indexPage->isSingleResourceOnPage([$element => $value]), sprintf('Product with %s %s was created, but it should not.', $element, $value));
 }