Files
alighasami 3d5eaf9445
Security: Sync from Public / sync-from-public (push) Has been cancelled
Test: Benchmark Nightly / build (push) Has been cancelled
Test: Benchmark Nightly / Notify Cats on failure (push) Has been cancelled
CI: Python / Checks (push) Has been cancelled
Test: Evals Python / Workflow Comparison Python (push) Has been cancelled
Util: Check Docs URLs / check-docs-urls (push) Has been cancelled
Test: Visual Storybook / Cloudflare Pages (push) Has been cancelled
Test: E2E Performance / build-and-test-performance (push) Has been cancelled
Test: Workflows Nightly / Run Workflow Tests (push) Has been cancelled
Util: Cleanup CI Docker Images / Delete stale CI images (push) Has been cancelled
Test: Benchmark Destroy Env / build (push) Has been cancelled
Util: Update Node Popularity / update-popularity (push) Has been cancelled
Test: E2E Coverage Weekly / Coverage Tests (push) Has been cancelled
first commit
2026-03-17 16:22:57 +03:30

71 lines
1.7 KiB
TypeScript

import type {
IExecuteFunctions,
INodeExecutionData,
IBinaryData,
INodeProperties,
} from 'n8n-workflow';
import {
validateSessionAndWindowId,
validateAirtopApiResponse,
convertScreenshotToBinary,
} from '../../GenericFunctions';
import { apiRequest } from '../../transport';
export const description: INodeProperties[] = [
{
displayName: 'Output Binary Image',
description: 'Whether to output the image as a binary file instead of a base64 encoded string',
name: 'outputImageAsBinary',
type: 'boolean',
default: false,
displayOptions: {
show: {
resource: ['window'],
operation: ['takeScreenshot'],
},
},
},
];
export async function execute(
this: IExecuteFunctions,
index: number,
): Promise<INodeExecutionData[]> {
const { sessionId, windowId } = validateSessionAndWindowId.call(this, index);
const outputImageAsBinary = this.getNodeParameter('outputImageAsBinary', index, false) as boolean;
let data: IBinaryData | undefined; // for storing the binary data
let image = ''; // for storing the base64 encoded image
const response = await apiRequest.call(
this,
'POST',
`/sessions/${sessionId}/windows/${windowId}/screenshot`,
);
// validate response
validateAirtopApiResponse(this.getNode(), response);
// process screenshot on success
if (response.meta?.screenshots?.length) {
if (outputImageAsBinary) {
const buffer = convertScreenshotToBinary(response.meta.screenshots[0]);
data = await this.helpers.prepareBinaryData(buffer, 'screenshot.jpg', 'image/jpeg');
} else {
image = response?.meta?.screenshots?.[0].dataUrl;
}
}
return [
{
json: {
sessionId,
windowId,
image,
},
...(data ? { binary: { data } } : {}),
},
];
}