E2E\TestCase::login PHP Method

login() protected method

Log into Koel.
protected login ( string $username = '[email protected]', string $password = 'SoSecureK0el' )
$username string
$password string
    protected function login($username = '[email protected]', $password = 'SoSecureK0el')
    {
        $this->typeIn("#app > div.login-wrapper > form > [type='email']", $username);
        $this->typeIn("#app > div.login-wrapper > form > [type='password']", $password);
        $this->enter();
        return $this;
    }