Esempio n. 1
0
 public function getTitle()
 {
     return $this->webDriver->getTitle();
 }
Esempio n. 2
0
 public function dontSeeInTitle($title)
 {
     $this->assertNotContains($title, $this->webDriver->getTitle());
 }
Esempio n. 3
0
 public function testGitHubHome()
 {
     $this->webDriver->get($this->url);
     self::assertContains('GitHub', $this->webDriver->getTitle());
 }