2013-12-02 19:25:21 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace tests\_pages;
|
|
|
|
|
2013-12-17 07:27:33 +08:00
|
|
|
use yii\codeception\BasePage;
|
2013-12-02 19:25:21 +08:00
|
|
|
|
2013-12-17 07:27:33 +08:00
|
|
|
class ContactPage extends BasePage
|
|
|
|
{
|
2014-03-16 12:46:16 +08:00
|
|
|
public $route = 'site/contact';
|
2013-12-02 19:25:21 +08:00
|
|
|
|
2014-03-16 12:46:16 +08:00
|
|
|
/**
|
|
|
|
* @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('contact-button');
|
|
|
|
}
|
2013-12-02 19:25:21 +08:00
|
|
|
}
|