mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-16 05:04:57 +08:00
Update get-openid-token.spec.ts - use Cypress Testing Library (#10586)
Signed-off-by: Suguru Hirahara <luixxiul@users.noreply.github.com>
This commit is contained in:
parent
747afec27e
commit
a2c2c01edc
@ -59,15 +59,13 @@ const INTEGRATION_MANAGER_HTML = `
|
|||||||
`;
|
`;
|
||||||
|
|
||||||
function openIntegrationManager() {
|
function openIntegrationManager() {
|
||||||
cy.get(".mx_RightPanel_roomSummaryButton").click();
|
cy.findByRole("tab", { name: "Room info" }).click();
|
||||||
cy.get(".mx_RoomSummaryCard_appsGroup").within(() => {
|
cy.findByRole("button", { name: "Add widgets, bridges & bots" }).click();
|
||||||
cy.contains("Add widgets, bridges & bots").click();
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function sendActionFromIntegrationManager(integrationManagerUrl: string) {
|
function sendActionFromIntegrationManager(integrationManagerUrl: string) {
|
||||||
cy.accessIframe(`iframe[src*="${integrationManagerUrl}"]`).within(() => {
|
cy.accessIframe(`iframe[src*="${integrationManagerUrl}"]`).within(() => {
|
||||||
cy.get("#send-action").should("exist").click();
|
cy.findByRole("button", { name: "Press to send action" }).should("exist").click();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -134,7 +132,9 @@ describe("Integration Manager: Get OpenID Token", () => {
|
|||||||
sendActionFromIntegrationManager(integrationManagerUrl);
|
sendActionFromIntegrationManager(integrationManagerUrl);
|
||||||
|
|
||||||
cy.accessIframe(`iframe[src*="${integrationManagerUrl}"]`).within(() => {
|
cy.accessIframe(`iframe[src*="${integrationManagerUrl}"]`).within(() => {
|
||||||
cy.get("#message-response").should("include.text", "access_token");
|
cy.get("#message-response").within(() => {
|
||||||
|
cy.findByText(/access_token/);
|
||||||
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user