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