Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
|
- <?php
-
- namespace frontend\tests\functional;
-
- use frontend\tests\FunctionalTester;
-
- class HomeCest
- {
- public function checkOpen(FunctionalTester $I)
- {
- $I->amOnPage(\Yii::$app->homeUrl);
- $I->see('My Company');
- $I->seeLink('About');
- $I->click('About');
- $I->see('This is the About page.');
- }
- }
|