mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
c50b81ff19
Signed-off-by: snipe <snipe@snipe.net>
19 lines
374 B
PHP
19 lines
374 B
PHP
<?php
|
|
|
|
class LoginCest
|
|
{
|
|
public function _before(AcceptanceTester $I)
|
|
{
|
|
}
|
|
|
|
// tests
|
|
public function tryToLogin(AcceptanceTester $I)
|
|
{
|
|
$I->wantTo('sign in');
|
|
$I->amOnPage('/login');
|
|
$I->see(trans('auth/general.login_prompt'));
|
|
$I->seeElement('input[type=text]');
|
|
$I->seeElement('input[type=password]');
|
|
}
|
|
}
|