4ca21c3e
Alexey Boroda
first commit
|
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?php
namespace tests\codeception\frontend\functional;
use tests\codeception\frontend\FunctionalTester;
use tests\codeception\frontend\_pages\AboutPage;
/* @var $scenario \Codeception\Scenario */
$I = new FunctionalTester($scenario);
$I->wantTo('ensure that about works');
AboutPage::openBy($I);
$I->see('About', 'h1');
|