yii2-netdisk/tests/_pages/ContactPage.php

26 lines
534 B
PHP
Raw Normal View History

2013-12-02 19:25:21 +08:00
<?php
namespace tests\_pages;
use yii\codeception\BasePage;
2013-12-02 19:25:21 +08:00
class ContactPage extends BasePage
{
2013-12-18 12:43:43 +08:00
public $route = 'site/contact';
2013-12-02 19:25:21 +08:00
/**
* @param array $contactData
*/
public function submit(array $contactData)
{
2014-02-07 09:22:11 +08:00
foreach ($contactData as $field => $value) {
2014-02-07 09:34:33 +08:00
if ($field == 'body') {
$this->guy->fillField('textarea[name="ContactForm[' . $field . ']"]', $value);
} else {
$this->guy->fillField('input[name="ContactForm[' . $field .']"]', $value);
2014-02-07 09:22:11 +08:00
}
2013-12-02 19:25:21 +08:00
}
2014-02-07 09:22:11 +08:00
$this->guy->click('Submit','#contact-form');
2013-12-02 19:25:21 +08:00
}
}