mirror of
https://github.com/allaunthefox/Research-Stack.git
synced 2026-07-31 03:05:21 +00:00
- Libraries created via API (204 on creation + path update) - Paths: /media/movies, /media/tv, /media/music - SSO-Auth plugin Active, SSO button on login page - Paths may need manual setting through Dashboard UI Build: 3313 jobs, 0 errors
11 lines
498 B
TypeScript
11 lines
498 B
TypeScript
import { test } from '@playwright/test';
|
|
test('debug page', async ({ page }) => {
|
|
test.setTimeout(15000);
|
|
await page.goto('http://100.88.57.96:30091/web/', { timeout: 10000, waitUntil: 'domcontentloaded' });
|
|
await page.screenshot({ path: '/tmp/jf-debug.png' });
|
|
const title = await page.title();
|
|
console.log('Title:', title);
|
|
const html = await page.content();
|
|
console.log('Has login:', html.includes('txtUsername'));
|
|
console.log('Has button:', html.includes('button-submit'));
|
|
});
|