diff options
Diffstat (limited to 'tests/acceptance/features/bootstrap/UsersSettingsContext.php')
-rw-r--r-- | tests/acceptance/features/bootstrap/UsersSettingsContext.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/acceptance/features/bootstrap/UsersSettingsContext.php b/tests/acceptance/features/bootstrap/UsersSettingsContext.php index 020da466128..cc542bf2fc4 100644 --- a/tests/acceptance/features/bootstrap/UsersSettingsContext.php +++ b/tests/acceptance/features/bootstrap/UsersSettingsContext.php @@ -176,21 +176,21 @@ class UsersSettingsContext implements Context, ActorAwareInterface { * @When I click the New user button */ public function iClickTheNewUserButton() { - $this->actor->find(self::newUserButton())->click(); + $this->actor->find(self::newUserButton(), 10)->click(); } /** * @When I click the :action action in the :user actions menu */ public function iClickTheAction($action, $user) { - $this->actor->find(self::theAction($action, $user))->click(); + $this->actor->find(self::theAction($action, $user), 10)->click(); } /** * @When I open the actions menu for the user :user */ public function iOpenTheActionsMenuOf($user) { - $this->actor->find(self::actionsMenuOf($user))->click(); + $this->actor->find(self::actionsMenuOf($user), 10)->click(); } /** |