yii2-netdisk/tests/_pages/ContactPage.php
2014-02-07 05:36:46 +04:00

23 lines
468 B
PHP

<?php
namespace tests\_pages;
use yii\codeception\BasePage;
class ContactPage extends BasePage
{
public $route = 'site/contact';
/**
* @param array $contactData
*/
public function submit(array $contactData)
{
foreach ($contactData as $field => $value) {
$inputType = ($field == 'body') ? 'textarea' : 'input';
$this->guy->fillField($inputType.'[name="ContactForm[' . $field . ']"]', $value);
}
$this->guy->click('Submit','#contact-form');
}
}