add leadfinder, add double pendulum

This commit is contained in:
2026-04-01 17:24:51 +02:00
parent cfd761c70c
commit 22106a8170
30 changed files with 8147 additions and 18441 deletions

View File

@@ -0,0 +1,11 @@
import { test, expect } from '@playwright/test';
test('test', async ({ page }) => {
await page.getByRole('checkbox', { name: 'View more options to select' }).click();
await page.locator('label').filter({ hasText: 'Select this page' }).locator('div').first().click();
await page.getByRole('button', { name: 'Apply' }).click();
await page.getByRole('button', { name: 'Export' }).click();
await page.getByRole('button', { name: 'Export records' }).click();
await page.getByRole('button', { name: 'Clear 25 selected' }).click();
await page.getByRole('button', { name: 'Next' }).click();
});