コード例 #1
0
ファイル: RemoteWebDriver.php プロジェクト: carnage/selenium
 public function getTitle()
 {
     return $this->webDriver->getTitle();
 }
コード例 #2
0
ファイル: WebDriver.php プロジェクト: neronmoon/Codeception
 public function dontSeeInTitle($title)
 {
     $this->assertNotContains($title, $this->webDriver->getTitle());
 }
コード例 #3
0
 public function testGitHubHome()
 {
     $this->webDriver->get($this->url);
     self::assertContains('GitHub', $this->webDriver->getTitle());
 }