Example #1
0
 public function testLinksWithSimilarNames()
 {
     $this->module->amOnPage('/');
     $this->module->click('Test Link');
     $this->module->seeInCurrentUrl('/form/file');
     $this->module->amOnPage('/');
     $this->module->click('Test');
     $this->module->seeInCurrentUrl('/form/hidden');
 }
Example #2
0
 public function testClick()
 {
     $this->module->amOnPage('/');
     $this->module->click('More info');
     $this->module->seeInCurrentUrl('/info');
 }