[ 'class' => UserFixture::class, 'dataFile' => codecept_data_dir() . 'user.php', ], ]; } public function _before(FunctionalTester $I) { $I->amOnRoute('site/resend-verification-email'); } protected function formParams($email) { return [ 'ResendVerificationEmailForm[email]' => $email ]; } public function checkPage(FunctionalTester $I) { $I->see('Resend verification email', 'h1'); $I->see('Please fill out your email. A verification email will be sent there.'); } public function checkSendSuccessfully(FunctionalTester $I) { $I->submitForm($this->formId, $this->formParams('test@mail.com')); $I->see('Check your email for further instructions.'); } }