|
@@ -11,6 +11,9 @@ $I->see('Contact', 'h1');
|
|
|
|
|
|
|
|
$I->amGoingTo('submit contact form with no data');
|
|
$I->amGoingTo('submit contact form with no data');
|
|
|
$contactPage->submit([]);
|
|
$contactPage->submit([]);
|
|
|
|
|
+if (method_exists($I, 'wait')) {
|
|
|
|
|
+ $I->wait(3); // only for selenium
|
|
|
|
|
+}
|
|
|
$I->expectTo('see validations errors');
|
|
$I->expectTo('see validations errors');
|
|
|
$I->see('Contact', 'h1');
|
|
$I->see('Contact', 'h1');
|
|
|
$I->see('Name cannot be blank');
|
|
$I->see('Name cannot be blank');
|
|
@@ -27,6 +30,9 @@ $contactPage->submit([
|
|
|
'body' => 'test content',
|
|
'body' => 'test content',
|
|
|
'verifyCode' => 'testme',
|
|
'verifyCode' => 'testme',
|
|
|
]);
|
|
]);
|
|
|
|
|
+if (method_exists($I, 'wait')) {
|
|
|
|
|
+ $I->wait(3); // only for selenium
|
|
|
|
|
+}
|
|
|
$I->expectTo('see that email adress is wrong');
|
|
$I->expectTo('see that email adress is wrong');
|
|
|
$I->dontSee('Name cannot be blank', '.help-inline');
|
|
$I->dontSee('Name cannot be blank', '.help-inline');
|
|
|
$I->see('Email is not a valid email address.');
|
|
$I->see('Email is not a valid email address.');
|