Back to list
Intellifill

browser-testing

by Intellifill

Intelligent document processing and form automation platform

1🍴 0📅 Jan 21, 2026

SKILL.md


name: browser-testing description: Browser automation for testing IntelliFill. Replaces puppeteer MCP to save ~4.8k tokens.

Browser Testing

This skill covers browser automation for IntelliFill testing. It lazy-loads on demand instead of consuming context upfront like MCP servers.

When I Need This

  • Testing form filling in Chrome
  • Capturing screenshots for docs
  • Debugging UI issues visually
  • Automating upload/download flows

Quick Setup

Start Chrome with remote debugging first:

start chrome --remote-debugging-port=9222 --user-data-dir="N:/IntelliFill/quikadmin/chrome-debug-profile"

Core Patterns

Connect to Running Chrome

const browser = await puppeteer.connect({ browserURL: 'http://localhost:9222' });
const page = await browser.newPage();
await page.goto('http://localhost:8080/login');
await page.type('[name="email"]', 'test@example.com');
await page.type('[name="password"]', 'password123');
await page.click('[type="submit"]');
await page.waitForNavigation();

Screenshot

await page.screenshot({ path: 'output.png', fullPage: true });

File Upload (IntelliFill document flow)

const [chooser] = await Promise.all([
  page.waitForFileChooser(),
  page.click('#upload-button')
]);
await chooser.accept(['./test-files/sample.pdf']);
await page.waitForSelector('.upload-complete');

IntelliFill URLs

Prefer Cypress/Playwright

For proper E2E tests, use the e2e-testing skill instead - it has full test infrastructure. This skill is for quick manual browser automation when you need direct Puppeteer control.

Score

Total Score

50/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

Reviews

💬

Reviews coming soon