Files
snipe-it/tests/acceptance/WelcomeCept.php
T
2015-08-11 22:18:36 -07:00

11 lines
295 B
PHP

<?php
$I = new AcceptanceTester($scenario);
$I->am('Website Visitor');
$I->wantTo('ensure that frontpage loads without errors');
$I->amGoingTo('go to the homepage');
$I->lookForwardTo('log in');
$I->amOnPage('/');
$I->seeElement('input[type=username]');
$I->seeElement('input[type=password]');