/**
  * @Given I can see the vallue :value in the HTML
  */
 public function iCanSeeTheValueInTheHTML($value)
 {
     $this->minkContext->assertResponseContains($value);
 }
Exemplo n.º 2
0
 /**
  * @Given I cannot see the link :link in the :region region
  */
 public function iCannotSeeTheLinkInTheRegion($link, $region)
 {
     $region = $this->repoElements[$region];
     $this->minkContext->assertNotLinkVisible($link);
     $this->minkContext->assertElementNotContainsText($region, $link);
 }