您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

17 行
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. }