Files
Adminator 1e51ef7def Nachtrag: alle bisher untracked Ordner + hängende Änderungen mit-committen
- Konzept/, didaktik_geografie/, didaktik_simulation/, v2-modules/, v2-platform/
- 12 code-workspace-Files
- STATUS-*.md
- viele M/D/R-Änderungen an bereits getrackten Files
- .gitignore verstärkt: **/.humaninput/, **/secret_keys.txt

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-07-08 02:27:02 +02:00

19 lines
881 B
JavaScript

const { chromium } = require('@playwright/test');
(async () => {
const browser = await chromium.launch();
const page = await browser.newPage();
const failed = [];
page.on('response', r => { if (r.status() === 404) failed.push(r.url()); });
await page.goto('http://localhost/geograsim/App/sims/wal/game.html');
await page.waitForTimeout(2200);
const styled = await page.evaluate(() => ({
hasGgsHeader: !!document.querySelector('.ggs-header'),
headerBg: getComputedStyle(document.querySelector('.ggs-header')).backgroundColor,
btnGhostBg: getComputedStyle(document.querySelector('.ggs-btn-ghost'))?.backgroundColor,
logoLoaded: document.querySelector('.ggs-header-logo-icon')?.complete,
}));
console.log('Styled:', JSON.stringify(styled, null, 2));
console.log('404s:', failed.length ? failed : 'none ✓');
await browser.close();
})();