for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Page\Admin;
use Codeception\Util\Fixtures;
abstract class AbstractAdminPageStyleGuide extends AbstractAdminPage
{
/**
* ページに移動しているかどうか確認。
* @param $pageTitle string ページタイトル
* @return $this
*/
protected function atPage($pageTitle)
$this->tester->see($pageTitle, '.c-pageTitle');
return $this;
}