Match string exactly (#30067)
The devices section in OIDC frontend has changed to include a heading with the device name. The device name and the client name both contain "Element", so playwright fails.
This commit is contained in:
@@ -55,7 +55,7 @@ test.describe("OIDC Native", { tag: ["@no-firefox", "@no-webkit"] }, () => {
|
|||||||
const newPage = await newPagePromise;
|
const newPage = await newPagePromise;
|
||||||
await newPage.getByText("Devices").click();
|
await newPage.getByText("Devices").click();
|
||||||
await newPage.getByText(deviceId).click();
|
await newPage.getByText(deviceId).click();
|
||||||
await expect(newPage.getByText("Element")).toBeVisible();
|
await expect(newPage.getByText("Element", { exact: true })).toBeVisible();
|
||||||
await expect(newPage.getByText("http://localhost:8080/")).toBeVisible();
|
await expect(newPage.getByText("http://localhost:8080/")).toBeVisible();
|
||||||
await expect(newPage).toHaveURL(/\/oauth2_session/);
|
await expect(newPage).toHaveURL(/\/oauth2_session/);
|
||||||
await newPage.close();
|
await newPage.close();
|
||||||
|
|||||||
Reference in New Issue
Block a user