Files
snipe-it/tests/acceptance/WelcomeCept.php
T
2015-08-11 15:57:58 -07:00

11 lines
299 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('logging in');
$I->amOnPage('/');
$I->seeElement('input[type=username]');
$I->seeElement('input[type=password]');