mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
19 lines
373 B
PHP
19 lines
373 B
PHP
<?php
|
|
|
|
class LoginCest
|
|
{
|
|
public function _before(AcceptanceTester $I)
|
|
{
|
|
}
|
|
|
|
// tests
|
|
public function tryToTest(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]');
|
|
}
|
|
}
|