HomeCept.php 213 B

123456789
  1. <?php
  2. $I = new WebGuy($scenario);
  3. $I->wantTo('ensure that home page works');
  4. $I->amOnPage(Yii::$app->homeUrl);
  5. $I->see('My Company');
  6. $I->seeLink('About');
  7. $I->click('About');
  8. $I->see('This is the About page.');