I just ran this code with playwright, and seems like Akamai was not detecting me. Wonder if further actions might cause some block due to the lack of emulating human mouse moves
➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖
const { chromium } = require('playwright'); // CommonJS version
Can Akamai detect Playwright?
I just ran this code with playwright, and seems like Akamai was not detecting me. Wonder if further actions might cause some block due to the lack of emulating human mouse moves
➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖
const { chromium } = require('playwright'); // CommonJS version
(async () => {
const browser = await chromium.launch({ headless: false });
const context = await browser.newContext();
const page = await context.newPage();
await page.goto('https://www.gucci.com/it/it/');
await page.waitForTimeout(5000);
await browser.close();
})();
➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖