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.
 
 
 
 
 
 

17 lines
340 B

  1. <?php
  2. namespace frontend\tests\functional;
  3. use frontend\tests\FunctionalTester;
  4. class HomeCest
  5. {
  6. public function checkOpen(FunctionalTester $I)
  7. {
  8. $I->amOnPage(\Yii::$app->homeUrl);
  9. $I->see('My Company');
  10. $I->seeLink('About');
  11. $I->click('About');
  12. $I->see('This is the About page.');
  13. }
  14. }