mirror of
https://github.com/HangarMC/Hangar.git
synced 2024-11-21 01:21:54 +08:00
9 lines
327 B
TypeScript
9 lines
327 B
TypeScript
|
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");
|
||
|
});
|