You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
386 B

8 months ago
  1. <?php
  2. use yii\helpers\Url;
  3. class HomeCest
  4. {
  5. public function ensureThatHomePageWorks(AcceptanceTester $I)
  6. {
  7. $I->amOnPage(Url::toRoute('/site/index'));
  8. $I->see('My Company');
  9. $I->seeLink('About');
  10. $I->click('About');
  11. $I->wait(2); // wait for page to be opened
  12. $I->see('This is the About page.');
  13. }
  14. }