Where does Apify save screenshots?

I found this code in a Puppeteer example and was wondering where Apify saves the screenshots.
console.log('Saving screenshot...');
const screenshotBuffer = await page.screenshot({ fullPage: true });
await Apify.setValue('screenshot.png', screenshotBuffer, { contentType: 'image/png' });
console.log('Saving screenshot...');
const screenshotBuffer = await page.screenshot({ fullPage: true });
await Apify.setValue('screenshot.png', screenshotBuffer, { contentType: 'image/png' });
1 Reply
foreign-sapphire
foreign-sapphire3y ago
Hi @SmilinDesperado, using the code above, the screenshot will be saved into the default KeyValue store. You can find it from the run detail under Storage -> Key-value store.

Did you find this page helpful?