Nestbrowser自动化JS脚本指南
内置函数
- const nestSleep = async (ms: number) => void; // page.waitForTimeout 在正式环境不启用,使用nestSleep
- const logger = (...args) => void; // 打印日志函数,也可显示于实时流式日志
- const RandomNum = (min: number, max: number) => void; // 随机数
- const escapeSpecialChars = (str: string) => void; // 转义字符
内置常量
- var NestReportPath
内置js库
- const fs = require('fs') fs
- const path = require('path') path
- const XLSX = require('xlsx') xlsx
- const axios = require('axios') axios