Files
geograsim/.dontDeploy/playwright/heli-page-check.js
T
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

14 lines
539 B
JavaScript

const { chromium } = require('@playwright/test');
(async () => {
const browser = await chromium.launch();
const page = await browser.newPage();
const res = await page.goto('http://localhost/geograsim/App/heli-game');
console.log('status:', res?.status());
await page.waitForTimeout(1500);
const t = await page.title();
console.log('title:', t);
const text = await page.locator('body').innerText({ timeout: 2000 }).catch(()=>null);
console.log('text head:', (text || '').substring(0, 200));
await browser.close();
})();