mirror of
https://github.com/yiisoft/yii2.git
synced 2025-08-22 19:31:02 +08:00
Fixes #6624: Added delays to acceptance tests in order to make Selenium run more reliable
This commit is contained in:
@ -10,6 +10,9 @@ $loginPage = LoginPage::openBy($I);
|
|||||||
|
|
||||||
$I->amGoingTo('submit login form with no data');
|
$I->amGoingTo('submit login form with no data');
|
||||||
$loginPage->login('', '');
|
$loginPage->login('', '');
|
||||||
|
if (method_exists($I, 'wait')) {
|
||||||
|
$I->wait(3); // only for selenium
|
||||||
|
}
|
||||||
$I->expectTo('see validations errors');
|
$I->expectTo('see validations errors');
|
||||||
$I->see('Username cannot be blank.', '.help-block');
|
$I->see('Username cannot be blank.', '.help-block');
|
||||||
$I->see('Password cannot be blank.', '.help-block');
|
$I->see('Password cannot be blank.', '.help-block');
|
||||||
@ -17,11 +20,17 @@ $I->see('Password cannot be blank.', '.help-block');
|
|||||||
$I->amGoingTo('try to login with wrong credentials');
|
$I->amGoingTo('try to login with wrong credentials');
|
||||||
$I->expectTo('see validations errors');
|
$I->expectTo('see validations errors');
|
||||||
$loginPage->login('admin', 'wrong');
|
$loginPage->login('admin', 'wrong');
|
||||||
|
if (method_exists($I, 'wait')) {
|
||||||
|
$I->wait(3); // only for selenium
|
||||||
|
}
|
||||||
$I->expectTo('see validations errors');
|
$I->expectTo('see validations errors');
|
||||||
$I->see('Incorrect username or password.', '.help-block');
|
$I->see('Incorrect username or password.', '.help-block');
|
||||||
|
|
||||||
$I->amGoingTo('try to login with correct credentials');
|
$I->amGoingTo('try to login with correct credentials');
|
||||||
$loginPage->login('erau', 'password_0');
|
$loginPage->login('erau', 'password_0');
|
||||||
|
if (method_exists($I, 'wait')) {
|
||||||
|
$I->wait(3); // only for selenium
|
||||||
|
}
|
||||||
$I->expectTo('see that user is logged');
|
$I->expectTo('see that user is logged');
|
||||||
$I->seeLink('Logout (erau)');
|
$I->seeLink('Logout (erau)');
|
||||||
$I->dontSeeLink('Login');
|
$I->dontSeeLink('Login');
|
||||||
|
@ -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', '.help-block');
|
$I->see('Name cannot be blank', '.help-block');
|
||||||
@ -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-block');
|
$I->dontSee('Name cannot be blank', '.help-block');
|
||||||
$I->see('Email is not a valid email address.', '.help-block');
|
$I->see('Email is not a valid email address.', '.help-block');
|
||||||
@ -42,4 +48,7 @@ $contactPage->submit([
|
|||||||
'body' => 'test content',
|
'body' => 'test content',
|
||||||
'verifyCode' => 'testme',
|
'verifyCode' => 'testme',
|
||||||
]);
|
]);
|
||||||
|
if (method_exists($I, 'wait')) {
|
||||||
|
$I->wait(3); // only for selenium
|
||||||
|
}
|
||||||
$I->see('Thank you for contacting us. We will respond to you as soon as possible.');
|
$I->see('Thank you for contacting us. We will respond to you as soon as possible.');
|
||||||
|
@ -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.');
|
||||||
|
@ -11,6 +11,9 @@ $I->see('Login', 'h1');
|
|||||||
|
|
||||||
$I->amGoingTo('try to login with empty credentials');
|
$I->amGoingTo('try to login with empty credentials');
|
||||||
$loginPage->login('', '');
|
$loginPage->login('', '');
|
||||||
|
if (method_exists($I, 'wait')) {
|
||||||
|
$I->wait(3); // only for selenium
|
||||||
|
}
|
||||||
$I->expectTo('see validations errors');
|
$I->expectTo('see validations errors');
|
||||||
$I->see('Username cannot be blank.');
|
$I->see('Username cannot be blank.');
|
||||||
$I->see('Password cannot be blank.');
|
$I->see('Password cannot be blank.');
|
||||||
|
Reference in New Issue
Block a user