HomeCept.php 266 Bytes
Newer Older
1
<?php
2

3 4
/* @var $scenario Codeception\Scenario */

5
$I = new FunctionalTester($scenario);
6
$I->wantTo('ensure that home page works');
7
$I->amOnPage(Yii::$app->homeUrl);
8 9 10 11
$I->see('My Company');
$I->seeLink('About');
$I->click('About');
$I->see('This is the About page.');