Hynek's notes

Signed-off-by: Erik Jan de Wit <erikjan.dewit@gmail.com>
This commit is contained in:
Erik Jan de Wit 2024-08-21 08:05:12 +02:00 committed by Stan Silvert
parent 35ce3c0a1f
commit e2d7a94459
2 changed files with 2 additions and 6 deletions

View file

@ -223,9 +223,7 @@ public class UncaughtErrorPageTest extends AbstractKeycloakTest {
try {
checkPageNotFound("/auth/realms/master/nosuch");
// Once keycloak.v2 would be the default login theme, uncomment the following line and remove the one below:
// String url = driver.findElement(By.xpath("//option[text()[contains(.,'Deutsch')]]")).getAttribute("value");
String url = driver.findElement(By.xpath("//a[text()[contains(.,'Deutsch')]]")).getAttribute("href");
String url = driver.findElement(By.xpath("//option[text()[contains(.,'Deutsch')]]")).getAttribute("value");
driver.navigate().to(url);
errorPage.assertCurrent();
} finally {

View file

@ -12,9 +12,7 @@ import static org.junit.Assert.assertEquals;
public class ThemeSelectorTest extends AbstractTestRealmKeycloakTest {
// At this moment, the default login theme as defined in ThemeSelectorProvider is "keycloak".
// Once the ThemeSelectorProvider.DEFAULT_V2 becomes default, this needs to be reflected in this constant.
private static final String SYSTEM_DEFAULT_LOGIN_THEME = ThemeSelectorProvider.DEFAULT;
private static final String SYSTEM_DEFAULT_LOGIN_THEME = ThemeSelectorProvider.DEFAULT_V2;
@Page
protected LoginPage loginPage;