for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace frontend\tests\functional;
use frontend\tests\FunctionalTester;
/**
* Class HomeCest
* @package frontend\tests\functional
*/
class HomeCest
{
* @param FunctionalTester $I
public function checkOpen(FunctionalTester $I)
$I->amOnPage(\Yii::$app->homeUrl);
$I->see('Yii2-advanced-start');
$I->seeLink('About');
$I->click('About');
$I->see('This is the About page.');
}