2 Comments

Can Akamai detect Playwright?

Expand full comment

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();

})();

➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖

Expand full comment