Files
yii2/apps/advanced/frontend/tests/functional/HomeCept.php
2014-08-11 12:43:50 +04:00

12 lines
237 B
PHP

<?php
use frontend\TestGuy;
$I = new TestGuy($scenario);
$I->wantTo('ensure that home page works');
$I->amOnPage(Yii::$app->homeUrl);
$I->see('My Company');
$I->seeLink('About');
$I->click('About');
$I->see('This is the About page.');