Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
- <?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');
- }
- }
|