Files
snipe-it/tests/acceptance/WelcomeCept.php
T
2016-02-12 17:32:40 -08: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('logging in');
$I->amOnPage('/');
$I->seeElement('input[type=text]');
$I->seeElement('input[type=password]');