mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-08-09 09:29:31 +08:00
Playwright + Native Node Test Runner (#3893)
This commit is contained in:
27
test/e2e/util-test.js
Normal file
27
test/e2e/util-test.js
Normal file
@@ -0,0 +1,27 @@
|
||||
/**
|
||||
* @param {TestInfo} testInfo Test info
|
||||
* @param {Page} page Page
|
||||
* @returns {Promise<void>}
|
||||
*/
|
||||
export async function screenshot(testInfo, page) {
|
||||
const screenshot = await page.screenshot();
|
||||
await testInfo.attach("screenshot", {
|
||||
body: screenshot,
|
||||
contentType: "image/png"
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {Page} page Page
|
||||
* @returns {Promise<void>}
|
||||
*/
|
||||
export async function login(page) {
|
||||
// Login
|
||||
await page.getByPlaceholder("Username").click();
|
||||
await page.getByPlaceholder("Username").fill("admin");
|
||||
await page.getByPlaceholder("Username").press("Tab");
|
||||
await page.getByPlaceholder("Password").fill("admin123");
|
||||
await page.getByLabel("Remember me").check();
|
||||
await page.getByRole("button", { name: "Login" }).click();
|
||||
await page.isVisible("text=Add New Monitor");
|
||||
}
|
Reference in New Issue
Block a user