/**
  * @Given I cannot see the link :link in the :region region
  */
 public function iCannotSeeTheLinkInTheRegion($link, $region)
 {
     $this->minkContext->assertNotLinkVisible($link);
     $this->minkContext->assertElementNotContainsText($region, $link);
 }