testaro 74.1.0 → 74.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/run.js +2 -0
package/package.json
CHANGED
package/run.js
CHANGED
|
@@ -23,6 +23,8 @@ const {getCatalog} = require('./procs/catalog');
|
|
|
23
23
|
const {nowString} = require('./procs/dateTime');
|
|
24
24
|
// Module to create browsers.
|
|
25
25
|
const {chromium} = require('playwright-extra');
|
|
26
|
+
const fs = require('fs').promises;
|
|
27
|
+
const os = require('os');
|
|
26
28
|
// Module to evade automation detection.
|
|
27
29
|
// Stealth is Chromium-specific: its evasions inject Chromium-only launch
|
|
28
30
|
// flags (e.g. `--disable-blink-features=AutomationControlled`) and patch
|