for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
use yii\helpers\Url;
class AboutCest
{
public function ensureThatAboutWorks(AcceptanceTester $I)
$I->amOnPage(Url::toRoute('/site/about'));
$I->see('About', 'h1');
}