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

18 lines
653 B
JavaScript

const { chromium } = require('@playwright/test');
(async () => {
const browser = await chromium.launch();
const page = await browser.newPage();
await page.goto('https://geograsim.at/lehrplan');
await page.waitForTimeout(2000);
// Extract Kompetenz-Slugs + Anker-Counts
const data = await page.evaluate(() => {
const out = [];
document.querySelectorAll('h2, h3, .kompetenz-title, .competence, [class*=anchor]').forEach(el => {
out.push(el.textContent.trim().substring(0, 80));
});
return { total: out.length, samples: out.slice(0,40) };
});
console.log(JSON.stringify(data, null, 2));
await browser.close();
})();