chore: remove temporary screenshot files

This commit is contained in:
2026-07-06 00:35:55 +09:00
parent acf7b8cfc4
commit 29621a3eac
3 changed files with 0 additions and 24 deletions
Binary file not shown.

Before

Width:  |  Height:  |  Size: 212 KiB

-10
View File
@@ -1,10 +0,0 @@
const { chromium } = require('@playwright/test');
(async () => {
const browser = await chromium.launch();
const page = await browser.newPage();
await page.goto('http://localhost:5265/login');
await page.screenshot({ path: './login-screenshot.png', fullPage: true });
console.log('Screenshot saved to ./login-screenshot.png');
await browser.close();
})();
-14
View File
@@ -1,14 +0,0 @@
import { chromium } from '@playwright/test';
(async () => {
try {
const browser = await chromium.launch();
const page = await browser.newPage({ viewport: { width: 1280, height: 720 } });
await page.goto('http://localhost:5265/login');
await page.screenshot({ path: './login-screenshot.png', fullPage: true });
console.log('✓ Screenshot saved to ./login-screenshot.png');
await browser.close();
} catch (e) {
console.error('Error:', e.message);
}
})();