dev #1

Merged
nocci merged 51 commits from dev into main 2026-03-06 16:31:29 +01:00
Showing only changes of commit f5e404329f - Show all commits

View file

@ -151,7 +151,7 @@ const ensureLoggedIn = async (page, context) => {
const isChallenge = async () => {
const cfFrame = page.locator('iframe[title*="Cloudflare"], iframe[src*="challenges"]');
const cfText = page.locator('text=Verify you are human');
return (await cfFrame.count()) > 0 || (await cfText.count()) > 0;
return await cfFrame.count() > 0 || await cfText.count() > 0;
};
while (!await isLoggedIn()) {