Commit 01b1c07d by Alexander Makarov

Merge pull request #2977 from PaulVanSchayck/fix-webdriver-test

Add wait() to login test with wrong credentials to fix WebDriver test
parents 055455d8 0456cd66
......@@ -17,6 +17,9 @@ $I->see('Password cannot be blank.');
$I->amGoingTo('try to login with wrong credentials');
$loginPage->login('admin', 'wrong');
if (method_exists($I, 'wait')) {
$I->wait(3); // only for selenium
}
$I->expectTo('see validations errors');
$I->see('Incorrect username or password.');
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment