Hello
I coded a thing to registre on a website, login is working perfectly.
But register i have this error immediately :
please allow cross-site tracking or change your browser
Do you have an idea ?
I am using like that :
const { webkit, chromium, firefox, devices } = require('playwright');
const iPhone11 = devices['iPhone 11 Pro'];
(async () => {
const browser = await webkit.launch({headless: false});
const context = await browser.newContext({
...iPhone11
});
const page = await context.newPage();