Hangar/e2e/tests/pages/LinkoutPage.ts

9 lines
327 B
TypeScript
Raw Normal View History

Feature("Linkout Page");
Scenario("Test Linkout", async ({ I, util, IndexPage }) => {
util.openHangarPage("/linkout?remoteUrl=https://google.com");
I.seeElement(locate("a").withAttr({ href: "https://google.com" }));
I.click(locate("a").withAttr({ href: "https://google.com" }));
I.waitInUrl("google.com");
});