Blame view

tests/codeception/frontend/functional/AboutCept.php 229 Bytes
c7f222e2   Artem   first
1
2
3
4
5
6
7
8
  <?php
  use tests\codeception\frontend\FunctionalTester;
  use tests\codeception\frontend\_pages\AboutPage;
  
  $I = new FunctionalTester($scenario);
  $I->wantTo('ensure that about works');
  AboutPage::openBy($I);
  $I->see('About', 'h1');