3 Comments
User's avatar
admazy's avatar

Here is a link and it also should be Akamai but for me it's not possible to pass it. Any ideas how to do this?

https://www.dell.com/en-us/shop/scc/scr/laptops

admazy's avatar

Can Akamai detect Playwright?

Tamas Deak's avatar

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

})();

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