コード例 #1
0
 /**
  * Test home page.
  *
  * @param \Codeception\FunctionalTester $I
  * @param \Codeception\Scenario         $scenario
  */
 public function testHomePage($I, $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.');
 }