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