Qiang Xue
11 years ago
6 changed files with 10 additions and 143 deletions
@ -1,51 +0,0 @@ |
|||||||
<?php |
|
||||||
|
|
||||||
namespace tests\functional\_pages; |
|
||||||
|
|
||||||
class ContactPage extends \tests\_pages\ContactPage |
|
||||||
{ |
|
||||||
/** |
|
||||||
* contact form name text field locator |
|
||||||
* @var string |
|
||||||
*/ |
|
||||||
public $name = 'ContactForm[name]'; |
|
||||||
/** |
|
||||||
* contact form email text field locator |
|
||||||
* @var string |
|
||||||
*/ |
|
||||||
public $email = 'ContactForm[email]'; |
|
||||||
/** |
|
||||||
* contact form subject text field locator |
|
||||||
* @var string |
|
||||||
*/ |
|
||||||
public $subject = 'ContactForm[subject]'; |
|
||||||
/** |
|
||||||
* contact form body textarea locator |
|
||||||
* @var string |
|
||||||
*/ |
|
||||||
public $body = 'ContactForm[body]'; |
|
||||||
/** |
|
||||||
* contact form verification code text field locator |
|
||||||
* @var string |
|
||||||
*/ |
|
||||||
public $verifyCode = 'ContactForm[verifyCode]'; |
|
||||||
|
|
||||||
/** |
|
||||||
* |
|
||||||
* @param array $contactData |
|
||||||
*/ |
|
||||||
public function submit(array $contactData) |
|
||||||
{ |
|
||||||
if (empty($contactData)) { |
|
||||||
$this->guy->submitForm('#contact-form', []); |
|
||||||
} else { |
|
||||||
$this->guy->submitForm('#contact-form', [ |
|
||||||
$this->name => $contactData['name'], |
|
||||||
$this->email => $contactData['email'], |
|
||||||
$this->subject => $contactData['subject'], |
|
||||||
$this->body => $contactData['body'], |
|
||||||
$this->verifyCode => $contactData['verifyCode'], |
|
||||||
]); |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
@ -1,30 +0,0 @@ |
|||||||
<?php |
|
||||||
|
|
||||||
namespace tests\functional\_pages; |
|
||||||
|
|
||||||
class LoginPage extends \tests\_pages\LoginPage |
|
||||||
{ |
|
||||||
/** |
|
||||||
* login form username text field locator |
|
||||||
* @var string |
|
||||||
*/ |
|
||||||
public $username = 'LoginForm[username]'; |
|
||||||
/** |
|
||||||
* login form password text field locator |
|
||||||
* @var string |
|
||||||
*/ |
|
||||||
public $password = 'LoginForm[password]'; |
|
||||||
|
|
||||||
/** |
|
||||||
* |
|
||||||
* @param string $username |
|
||||||
* @param string $password |
|
||||||
*/ |
|
||||||
public function login($username, $password) |
|
||||||
{ |
|
||||||
$this->guy->submitForm('#login-form', [ |
|
||||||
$this->username => $username, |
|
||||||
$this->password => $password, |
|
||||||
]); |
|
||||||
} |
|
||||||
} |
|
Loading…
Reference in new issue