diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2019-09-28 10:46:31 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-28 10:46:31 +0200 |
commit | c8cd607681ac128228f57114ce14dd67ab05de04 (patch) | |
tree | f1ddbe9300a4b37e2f8e78f933ed82dca98b1e10 /tests | |
parent | 8ca587be3a6cb555eb1c8b8245fe48cc9bea7a3e (diff) | |
parent | f737dc9a864443b30cd908dbf3d27b890ba4f4d4 (diff) | |
download | nextcloud-server-c8cd607681ac128228f57114ce14dd67ab05de04.tar.gz nextcloud-server-c8cd607681ac128228f57114ce14dd67ab05de04.zip |
Remove input id on login form (#17294)
Remove input id on login form
Diffstat (limited to 'tests')
-rw-r--r-- | tests/acceptance/features/bootstrap/LoginPageContext.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/acceptance/features/bootstrap/LoginPageContext.php b/tests/acceptance/features/bootstrap/LoginPageContext.php index 7862e306b26..ceb90263e4e 100644 --- a/tests/acceptance/features/bootstrap/LoginPageContext.php +++ b/tests/acceptance/features/bootstrap/LoginPageContext.php @@ -58,7 +58,7 @@ class LoginPageContext implements Context, ActorAwareInterface { * @return Locator */ public static function loginButton() { - return Locator::forThe()->id("submit")-> + return Locator::forThe()->id("submit-form")-> describedAs("Login button in Login page"); } |