Bläddra i källkod

Add wait() to login test with wrong credentials to fix WebDriver test

Paul van Schayck 12 år sedan
förälder
incheckning
bcf51a1156
1 ändrade filer med 3 tillägg och 0 borttagningar
  1. 3 0
      tests/acceptance/LoginCept.php

+ 3 - 0
tests/acceptance/LoginCept.php

@@ -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.');