We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e927cf1 + 46a0224 commit e25b8e9Copy full SHA for e25b8e9
tests/behat/features/actionUserLogin.feature
@@ -2,6 +2,7 @@ Feature: Login user
2
3
Scenario: Login as admin user successfully
4
Given I am on "/login"
5
+ Then wait very long for the page to be loaded
6
Then I should see "Sign in"
7
And I fill in "admin" for "login"
8
And I fill in "admin" for "password"
tests/behat/features/bootstrap/FeatureContext.php
@@ -121,6 +121,7 @@ public function iAmLoggedAs($username)
121
{
122
//$this->visit('/logout');
123
$this->visit('/login');
124
+ $this->waitForThePageToBeLoaded();
125
$this->fillField('login', $username);
126
$this->fillField('password', $username);
127
$this->pressButton('Sign in');
0 commit comments