コード例 #1
0
ファイル: AboutCept.php プロジェクト: shubnikofff/mobiles
<?php

use tests\codeception\_pages\site\AboutPage;
/* @var $scenario Codeception\Scenario */
$I = new AcceptanceTester($scenario);
$I->wantTo('ensure that about works');
AboutPage::openBy($I);
$I->see('Помощь', 'h1');
コード例 #2
0
ファイル: AboutCest.php プロジェクト: rhamlet1/Hazid
 public function testPageContent(\FunctionalTester $I)
 {
     $I->wantTo('ensure that about page works');
     AboutPage::openBy($I);
     $I->see(AboutPage::$textContent);
 }