Merge "selenium: Delete invisible unicode characters"

This commit is contained in:
jenkins-bot 2022-01-31 09:20:34 +00:00 committed by Gerrit Code Review
commit 3608b51f78

View file

@ -54,7 +54,7 @@ describe( 'Echo', function () {
await EchoPage.notices.click();
await EchoPage.alertMessage.waitForDisplayed();
const regexp = /Welcome to .*, .*! We're glad you're here./;
const regexp = /Welcome to .*, .*! We're glad you're here./;
assert( regexp.test( await EchoPage.alertMessage.getText() ) );
} );