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
|
|
|
|
{
|
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)
|
|
|
|
{
|
2013-12-29 08:26:18 +08:00
|
|
|
$data = [];
|
|
|
|
foreach ($contactData as $name => $value) {
|
|
|
|
$data["ContactForm[$name]"] = $value;
|
2013-12-02 19:25:21 +08:00
|
|
|
}
|
2013-12-29 08:26:18 +08:00
|
|
|
$this->guy->submitForm('#contact-form', $data);
|
2013-12-02 19:25:21 +08:00
|
|
|
}
|
|
|
|
}
|