Исправлены тесты для формы инициализации смены E-mail адреса

This commit is contained in:
ErickSkrauch
2016-05-23 21:27:09 +03:00
parent 1b4249ecd7
commit 3d6d9d484c
3 changed files with 9 additions and 5 deletions

View File

@@ -30,9 +30,11 @@ class AccountsRoute extends BasePage {
]);
}
public function changeEmailInitialize() {
public function changeEmailInitialize($password = '') {
$this->route = ['accounts/change-email-initialize'];
$this->actor->sendPOST($this->getUrl());
$this->actor->sendPOST($this->getUrl(), [
'password' => $password,
]);
}
public function changeEmailSubmitNewEmail($key = null, $email = null) {