mirror of
https://github.com/yiisoft/yii2.git
synced 2025-08-17 16:01:15 +08:00
9 lines
197 B
PHP
9 lines
197 B
PHP
<?php
|
|
$I = new TestGuy($scenario);
|
|
$I->wantTo('ensure that home page works');
|
|
$I->amOnPage('');
|
|
$I->see('My Company');
|
|
$I->seeLink('About');
|
|
$I->click('About');
|
|
$I->see('This is the About page.');
|