New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

ifa-framework

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ifa-framework

IDCAS web automation framework with TypeScript and Playwright

latest
npmnpm
Version
0.1.9
Version published
Maintainers
1
Created
Source

🚀 AI-powered web automation framework with TypeScript and Playwright

Features

  • Smart Locators: Find elements using natural language descriptions
  • AI Self-Healing: Automatically adapts to UI changes (coming in Sprint 3-4)
  • Visual Testing: Pixel-perfect screenshot comparisons (coming in Sprint 7-8)
  • Performance Monitoring: Built-in Core Web Vitals tracking (coming in Sprint 9-10)
  • Rich Reporting: Interactive HTML reports and Allure integration
  • TypeScript First: Full type safety and IntelliSense support

Quick Start

Installation

```bash npm install IFA-framework ```

Initialize Project

```bash npx fau init ```

This will create:

  • `fau.config.ts` - Framework configuration
  • `tests/` - Test files directory
  • `fau-results/` - Reports and screenshots

Write Your First Test

```typescript // tests/example.fau.ts import { FauPage } from 'fau-framework';

export default async function loginTest(page: FauPage) { await page.goto('https://example.com/login');

// Smart locators - find elements by description await page.smartFill('username', 'testuser'); await page.smartFill('password', 'password123'); await page.smartClick('login button');

// Take evidence screenshot await page.screenshot({ path: 'fau-results/screenshots/login-success.png' }); } ```

Run Tests

```bash

Run all tests

npm test

Run in headless mode

npm run test:headless

Debug a specific test

npx fau debug tests/example.fau.ts ```

// Create README.md file helper export function generateReadme(): string { return readmeContent; }

Keywords

playwright

FAQs

Package last updated on 09 Oct 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts