コード例 #1
0
ファイル: HomeCept.php プロジェクト: Humanized/viajero
<?php

use tests\codeception\app\FunctionalTester;
/* @var $scenario Codeception\Scenario */
$I = new FunctionalTester($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.');
コード例 #2
0
ファイル: HomeCept.php プロジェクト: frostiks25/rzwebsys7
<?php

use tests\codeception\app\FunctionalTester;
$I = new FunctionalTester($scenario);
$I->wantTo('ensure that home page works');
$I->amOnPage(Yii::$app->urlManager->createUrl('main/pages/index'));
$I->see('RzWebSys7');
$I->seeLink('Главная');