Make tests language independent

This commit is contained in:
Johannes Zellner 2024-02-14 14:30:06 +01:00
parent 146b5ac17e
commit 25292a86b4

View file

@ -95,7 +95,7 @@ describe('Application life cycle test', function () {
await browser.findElement(By.xpath('//input[@name="username"]')).sendKeys(username);
await browser.findElement(By.xpath('//input[@name="password"]')).sendKeys(password);
await browser.sleep(2000);
await browser.findElement(By.xpath('//button[@type="submit" and contains(text(), "Sign in")]')).click();
await browser.findElement(By.id('loginSubmitButton')).click();
await browser.sleep(2000);
athenticated_by_oidc = true;