yii2-netdisk/tests/_pages/ContactPage.php

23 lines
480 B
PHP
Raw Normal View History

2013-12-02 15:25:21 +04:00
<?php
namespace tests\_pages;
use yii\codeception\BasePage;
2013-12-02 15:25:21 +04:00
class ContactPage extends BasePage
{
2013-12-17 23:43:43 -05:00
public $route = 'site/contact';
2013-12-02 15:25:21 +04:00
/**
* @param array $contactData
*/
public function submit(array $contactData)
{
2014-02-07 05:22:11 +04:00
foreach ($contactData as $field => $value) {
2014-02-06 20:39:55 -05:00
$inputType = $field === 'body' ? 'textarea' : 'input';
$this->guy->fillField($inputType . '[name="ContactForm[' . $field . ']"]', $value);
2013-12-02 15:25:21 +04:00
}
2014-02-13 20:00:12 -05:00
$this->guy->click('#contact-form button[type=submit]');
2013-12-02 15:25:21 +04:00
}
}