diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2021-04-21 16:38:46 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-21 16:38:46 +0200 |
commit | 3da956bcdc5eaddfb92e3f3681c8f4b38a07be82 (patch) | |
tree | e89639aefb7227dfb839fc3935ef07d0ecffa603 /tests | |
parent | 3e7f7e5f9b5782473bf487c6fc1caac0543c0d99 (diff) | |
parent | 45c3b2a478c10136e27b70f4cb439612ca5babb9 (diff) | |
download | nextcloud-server-3da956bcdc5eaddfb92e3f3681c8f4b38a07be82.tar.gz nextcloud-server-3da956bcdc5eaddfb92e3f3681c8f4b38a07be82.zip |
Merge pull request #23529 from Simounet/feat/23397-settings-new-user-modal
Settings: new user row replaced by a modal
Diffstat (limited to 'tests')
-rw-r--r-- | tests/acceptance/features/bootstrap/UsersSettingsContext.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/acceptance/features/bootstrap/UsersSettingsContext.php b/tests/acceptance/features/bootstrap/UsersSettingsContext.php index d60261d5d1a..ce035647104 100644 --- a/tests/acceptance/features/bootstrap/UsersSettingsContext.php +++ b/tests/acceptance/features/bootstrap/UsersSettingsContext.php @@ -74,7 +74,7 @@ class UsersSettingsContext implements Context, ActorAwareInterface { * @return Locator */ public static function createNewUserButton() { - return Locator::forThe()->xpath("//form[@id = 'new-user']//input[@type = 'submit']")-> + return Locator::forThe()->xpath("//form[@id = 'new-user']//button[@type = 'submit']")-> describedAs("Create user button in Users Settings"); } |