Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix acceptance tests for wrong password message due to changed message
Signed-off-by: Morris Jobke <[email protected]>
  • Loading branch information
MorrisJobke committed Mar 11, 2019
commit 77cf702220418eb38a4e6bc0bfb89e9157b2c7ed
2 changes: 1 addition & 1 deletion tests/acceptance/features/bootstrap/LoginPageContext.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public static function loginButton() {
* @return Locator
*/
public static function wrongPasswordMessage() {
return Locator::forThe()->xpath("//*[@class = 'warning wrongPasswordMsg' and normalize-space() = 'Wrong password.']")->
return Locator::forThe()->xpath("//*[@class = 'warning wrongPasswordMsg' and normalize-space() = 'Wrong username or password.']")->
describedAs("Wrong password message in Login page");
}

Expand Down