feat(clickTtTournamentRegistrationService): add participant registration navigation steps

- Introduced additional steps to navigate to the participant registration section by clicking on 'Teilnehmeranmeldung'.
- Ensured the page waits for the DOM to load and dismisses consent overlays, improving user experience during the registration process.
This commit is contained in:
Torsten Schulz (local)
2026-03-11 21:22:49 +01:00
parent dba290c1d4
commit 4251dd6989

View File

@@ -267,6 +267,9 @@ class ClickTtTournamentRegistrationService {
await clickTtPlayerRegistrationService._clickByText(page, 'Turniere', trace);
await page.waitForLoadState('domcontentloaded');
await clickTtPlayerRegistrationService._dismissConsentOverlays(page, trace);
await clickTtPlayerRegistrationService._clickByText(page, 'Teilnehmeranmeldung', trace);
await page.waitForLoadState('domcontentloaded');
await clickTtPlayerRegistrationService._dismissConsentOverlays(page, trace);
}
async _filterTournamentSearch(page, tournament, trace) {