mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-09 23:24:06 -08:00
9 lines
193 B
PHP
9 lines
193 B
PHP
<?php
|
|
$I = new AcceptanceTester($scenario);
|
|
|
|
$I->wantTo('sign in');
|
|
$I->amOnPage('/login');
|
|
$I->see('Please Login');
|
|
$I->seeElement('input[type=text]');
|
|
$I->seeElement('input[type=password]');
|