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.
27 lines
670 B
27 lines
670 B
<?php
|
|
|
|
namespace tests\codeception\frontend\_pages;
|
|
|
|
use \yii\codeception\BasePage;
|
|
|
|
/**
|
|
* Represents signup page
|
|
* @property \codeception_frontend\AcceptanceTester|\codeception_frontend\FunctionalTester $actor
|
|
*/
|
|
class SignupPage extends BasePage
|
|
{
|
|
|
|
public $route = 'site/signup';
|
|
|
|
/**
|
|
* @param array $signupData
|
|
*/
|
|
public function submit(array $signupData)
|
|
{
|
|
foreach ($signupData as $field => $value) {
|
|
$inputType = $field === 'body' ? 'textarea' : 'input';
|
|
$this->actor->fillField($inputType . '[name="SignupForm[' . $field . ']"]', $value);
|
|
}
|
|
$this->actor->click('signup-button');
|
|
}
|
|
}
|
|
|