yii2-netdisk/tests/acceptance/HomeCept.php

10 lines
213 B
PHP
Raw Normal View History

<?php
$I = new WebGuy($scenario);
$I->wantTo('ensure that home page works');
$I->amOnPage(Yii::$app->homeUrl);
$I->see('My Company');
$I->seeLink('About');
$I->click('About');
$I->see('This is the About page.');