09237c013e
follow up to PR #1393
10 lines
198 B
PHP
10 lines
198 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.');
|