mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-09 01:27:20 +08:00
25 lines
466 B
PHP
25 lines
466 B
PHP
<?php
|
|
|
|
namespace frontend\tests\_pages;
|
|
|
|
use \yii\codeception\BasePage;
|
|
|
|
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->guy->fillField($inputType . '[name="SignupForm[' . $field . ']"]', $value);
|
|
}
|
|
$this->guy->click('signup-button');
|
|
}
|
|
|
|
}
|