19 lines
386 B
PHP
Raw Normal View History

2016-07-14 19:20:28 +03:00
<?php
use yii\helpers\Url;
2016-07-14 19:20:28 +03:00
class HomeCest
{
public function ensureThatHomePageWorks(AcceptanceTester $I)
{
$I->amOnPage(Url::toRoute('/site/index'));
2016-07-14 19:20:28 +03:00
$I->see('My Company');
$I->seeLink('About');
$I->click('About');
2016-10-19 16:42:29 +03:00
$I->wait(2); // wait for page to be opened
2016-07-14 19:20:28 +03:00
$I->see('This is the About page.');
}
}