Open
Description
Thanks a bunch for creating this awesome package.
I was having an issue with the download event. It works great when I try to execute my code locally (serverless invoke local
) but when I deploy this via serverless deploy
, the waitForEvent('download')
times out.
Here's the code:
const { page, browser } = await openWebpage(URL);
const [download] = await Promise.all([
// Start waiting for the download
page.waitForEvent('download'),
// Perform the action that initiates download
page.click(`#${BTN_ID}`),
]);
Here's the openWebpage function:
export async function openWebpage(url) {
const browser = await playwright.launchChromium();
const context = await browser.newContext({
acceptDownloads: true,
});
const page = await context.newPage();
await page.goto(url);
return { page, browser: context };
}
A similar issue was posted in playwright's official repo here.
In that same issue, I've commented about my issue as well, here.
I guess since this package was created based on chrome-aws-lambda, which is for puppeteer basically, and puppeteer does not support download event, so it wasn't included in this package as well. But that's just a random guess. I'd love to help in any way to get this issue fixed.
Hope to hear from you soon.
Metadata
Metadata
Assignees
Labels
No labels