Blame view

tests/codeception/frontend/acceptance/HomeCept.php 272 Bytes
c7f222e2   Artem   first
1
2
3
4
5
6
7
8
9
10
  <?php
  use tests\codeception\frontend\AcceptanceTester;
  
  $I = new AcceptanceTester($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.');