[java-idp-integration-tests] branch main updated: Workaround being unable to click because of accessibility changes
Tom Zeller
tzeller at dragonacea.biz
Tue Mar 1 15:09:47 UTC 2022
This is an automated email from the git hooks/post-receive script.
tzeller pushed a commit to branch main
in repository java-idp-integration-tests.
View the commit online:
http://git.shibboleth.net/view/?p=java-idp-integration-tests.git;a=commit;h=f5ae316cf54c7dab5f72da0785167fa3a194799c
The following commit(s) were added to refs/heads/main by this push:
new f5ae316 Workaround being unable to click because of accessibility changes
f5ae316 is described below
commit f5ae316cf54c7dab5f72da0785167fa3a194799c
Author: Tom Zeller <tzeller at dragonacea.biz>
AuthorDate: Tue Mar 1 09:09:33 2022 -0600
Workaround being unable to click because of accessibility changes
https://shibboleth.atlassian.net/browse/IDP-1910
---
src/test/java/net/shibboleth/idp/test/BaseIntegrationTest.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/test/java/net/shibboleth/idp/test/BaseIntegrationTest.java b/src/test/java/net/shibboleth/idp/test/BaseIntegrationTest.java
index a92f6c6..b834c75 100644
--- a/src/test/java/net/shibboleth/idp/test/BaseIntegrationTest.java
+++ b/src/test/java/net/shibboleth/idp/test/BaseIntegrationTest.java
@@ -1969,7 +1969,7 @@ public abstract class BaseIntegrationTest
public void acceptTermsOfUse() {
final WebElement element = driver.findElement(By.name(CONSENT_IDS_INPUT_NAME));
if (!element.isSelected()) {
- element.click();
+ clickWorkaround(element);
}
}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list