frontend\tests\functional\SignupCest::signupSuccessfully PHP Method

signupSuccessfully() public method

    public function signupSuccessfully(FunctionalTester $I)
    {
        $I->submitForm($this->formId, ['SignupForm[username]' => 'tester', 'SignupForm[email]' => '[email protected]', 'SignupForm[password]' => 'tester_password']);
        $I->seeRecord('common\\models\\User', ['username' => 'tester', 'email' => '[email protected]']);
        $I->see('Logout (tester)', 'form button[type=submit]');
    }