mirror of
https://github.com/janickiy/yii2-nomer
synced 2025-03-09 15:39:59 +00:00
17 lines
392 B
PHP
17 lines
392 B
PHP
<?php
|
|
use yii\helpers\Url as Url;
|
|
|
|
class HomeCest
|
|
{
|
|
public function ensureThatHomePageWorks(AcceptanceTester $I)
|
|
{
|
|
$I->amOnPage(Url::toRoute('/site/index'));
|
|
$I->see('My Company');
|
|
|
|
$I->seeLink('About');
|
|
$I->click('About');
|
|
$I->wait(2); // wait for page to be opened
|
|
|
|
$I->see('This is the About page.');
|
|
}
|
|
}
|