選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

11 行
272B

  1. <?php
  2. use tests\codeception\frontend\FunctionalTester;
  3. use tests\codeception\frontend\_pages\AboutPage;
  4. /* @var $scenario Codeception\Scenario */
  5. $I = new FunctionalTester($scenario);
  6. $I->wantTo('ensure that about works');
  7. AboutPage::openBy($I);
  8. $I->see('About', 'h1');