UNPKG

n8n-nodes-robotframework

Version:

An n8n custom node that executes Robot Framework scripts, allowing users to automate testing and workflow tasks within n8n

6 lines (5 loc) 279 B
import type { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow'; export declare class RobotFramework implements INodeType { description: INodeTypeDescription; execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>; }