You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
707 B
25 lines
707 B
<?php
|
|
|
|
namespace tests\codeception\common\_pages;
|
|
|
|
use yii\codeception\BasePage;
|
|
|
|
/**
|
|
* Represents loging page
|
|
* @property \codeception_frontend\AcceptanceTester|\codeception_frontend\FunctionalTester|\codeception_backend\AcceptanceTester|\codeception_backend\FunctionalTester $actor
|
|
*/
|
|
class LoginPage extends BasePage
|
|
{
|
|
public $route = 'site/login';
|
|
|
|
/**
|
|
* @param string $username
|
|
* @param string $password
|
|
*/
|
|
public function login($username, $password)
|
|
{
|
|
$this->actor->fillField('input[name="LoginForm[username]"]', $username);
|
|
$this->actor->fillField('input[name="LoginForm[password]"]', $password);
|
|
$this->actor->click('login-button');
|
|
}
|
|
}
|
|
|