Category
FrontALF
About Code node and Browser automation node
Code node
1. Restrictions - Supported language: JavaScript - Maximum execution time: 60 seconds Available Functions and Libraries The Code Node environment provides a limited set of functions and libraries.If you need additional functionality, please contact the Channel team.We will review your request and inform you whether support can be added. Built-in JavaScript Objects JSON, Math, Date, Array, Object, String, Number, Boolean, RegExp, Error, TypeError, ReferenceError, SyntaxError, Utility Functions paBrowser automation node
1. Constraints - Allowed language: JavaScript - Maximum code execution time: 60 seconds Available functions and libraries - Same as the Code Node by default. - Only the chromium object from the Playwright library can be used. 2. How to write code const { chromium } = require('playwright'); export const handler = async (memory, context) => { (async () => { const browser = await chromium.launch({ headless: false }); const context = await browser.newContext(); await context.close(); await browser.c