21 lines
571 B
PHP
21 lines
571 B
PHP
<?php
|
|
use yii\helpers\Url as Url;
|
|
|
|
class LoginCest
|
|
{
|
|
public function ensureThatLoginWorks(AcceptanceTester $I)
|
|
{
|
|
$I->amOnPage(Url::toRoute('/site/login'));
|
|
$I->see('Login', 'h1');
|
|
|
|
$I->amGoingTo('try to login with correct credentials');
|
|
$I->fillField('input[name="LoginForm[username]"]', 'admin');
|
|
$I->fillField('input[name="LoginForm[password]"]', 'admin');
|
|
$I->click('login-button');
|
|
$I->wait(2); // wait for button to be clicked
|
|
|
|
$I->expectTo('see user info');
|
|
$I->see('Logout');
|
|
}
|
|
}
|