Add login page as Page Object Model

This commit is contained in:
Eva Marco 2024-05-06 17:29:27 +02:00
parent 7280dfd3f7
commit 832c1db63b
19 changed files with 143 additions and 85 deletions

View file

@ -0,0 +1,8 @@
import { interceptRPC } from "./index";
export const setupNotLogedIn = async (page) => {
await interceptRPC(page, "get-profile", "get-profile-anonymous.json");
};