Add web-automation skill variants and inline prerequisite checks

This commit is contained in:
Luke
2026-02-09 04:34:57 +00:00
parent 5456ee228b
commit ff22639dbe
42 changed files with 9416 additions and 21 deletions

View File

@@ -0,0 +1,22 @@
import { Camoufox } from 'camoufox-js';
async function test() {
console.log('Launching Camoufox with minimal config...');
const browser = await Camoufox({
headless: true,
});
console.log('Browser launched');
const page = await browser.newPage();
console.log('Page created');
await page.goto('https://example.com', { timeout: 30000 });
console.log('Navigated to:', page.url());
console.log('Title:', await page.title());
await browser.close();
console.log('Done');
}
test().catch(console.error);