You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
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');