KEYCLOAK-8035 Fix failing GitLab Social Login test

This commit is contained in:
vmuzikar 2018-08-13 12:37:11 +02:00 committed by Stan Silvert
parent fa8cb004a1
commit 79774d2f07

View file

@ -45,6 +45,12 @@ public class GitLabLoginPage extends AbstractSocialLoginPage {
catch (NoSuchElementException e) { catch (NoSuchElementException e) {
// already logged in // already logged in
} }
try {
authorizeButton.click(); authorizeButton.click();
} }
catch (NoSuchElementException e) {
// might not be necessary
}
}
} }