Metadata-Version: 2.4
Name: agentic-test-framework
Version: 0.1.3
Summary: AI-powered browser testing framework using natural language and OpenAI
Author-email: "Dr. Fatih Tekin" <fatih.tekin.de@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/DrFatihTekin/agentic-test-framework/tree/master
Project-URL: Documentation, https://github.com/DrFatihTekin/agentic-test-framework/tree/master/README.md
Project-URL: Repository, https://github.com/DrFatihTekin/agentic-test-framework
Keywords: testing,automation,ai,playwright,openai,browser-testing
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Testing
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.11
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: playwright>=1.41.0
Requires-Dist: openai>=1.10.0
Requires-Dist: pydantic>=2.5.0
Requires-Dist: python-dotenv>=1.0.0
Requires-Dist: pyyaml>=6.0.0
Provides-Extra: dev
Requires-Dist: pytest>=7.4.0; extra == "dev"
Requires-Dist: pytest-asyncio>=0.23.0; extra == "dev"
Dynamic: license-file

# Agentic Test Framework

An AI-powered browser testing framework that accepts natural language test descriptions and executes them using Playwright.

## Quick Start

```bash
# Create and activate virtual environment
python3 -m venv .venv
source .venv/bin/activate  # On Windows: .venv\Scripts\activate

# Install the package
pip install agentic-test-framework

# Install Playwright browsers
playwright install

# Set up environment
cp .env.example .env
# Edit .env and add your OpenAI API key

# Run an example test
python -m agentic_test_framework "Go to example.com and take a screenshot"
```

## Features

- 🤖 **Natural Language Tests**: Write tests in plain English
- 🌐 **Browser Automation**: Powered by Playwright (Chrome, Firefox, Safari)
- 🧠 **AI-Driven**: Uses OpenAI to interpret test scenarios
- 📸 **Auto Screenshots**: Captures screenshots on demand or for every step
- 📊 **Dual Reporting**: Custom HTML reports + Playwright trace viewer
- 🎬 **Time-Travel Debugging**: Playwright traces with DOM snapshots, network logs, console output
- 🎥 **Video Recording**: Automatic video capture of test execution
- ✅ **Assertions**: Verify conditions and extract data
- 🔄 **Smart Retries**: Handles flaky elements automatically
- 📝 **ATC Format**: Structured test files with YAML-like syntax

## Example Tests

### Command Line
```bash
# Simple navigation
agentic-test "Go to google.com and search for 'playwright testing'"

# Multi-step workflow
agentic-test "Navigate to github.com, click Sign in, type 'testuser' in username field"

# Validation
agentic-test "Go to example.com, verify the page title contains 'Example', take screenshot"
```

### ATC File Format

Create structured test files with `.atc` extension:

```atc
# Login Test Suite

@config browser=chromium
@config headless=false

## Scenario: Successful Login
@tag smoke
@tag login

Go to example.com/login
Type 'testuser' into username field
Type 'password123' into password field
Click login button
Verify page contains 'Welcome'
Take a screenshot
```

**Quick Start: Generate ATC Templates**

```bash
# Create basic template
agentic-test --create tests/my_test.atc

# Create from predefined templates
agentic-test --create tests/login.atc --template login
agentic-test --create tests/shop.atc --template ecommerce
agentic-test --create tests/api.atc --template api
```

Available templates:
- **basic** - Simple test structure
- **login** - Login/authentication flows
- **ecommerce** - Shopping and checkout flows
- **api** - API/integration tests

Run ATC files:
```bash
# Run all scenarios
agentic-test tests/login.atc

# Run specific scenario
agentic-test tests/login.atc --scenario "Successful Login"

# Run by tag
agentic-test tests/login.atc --tag smoke
```

See [docs/ATC_FORMAT.md](docs/ATC_FORMAT.md) for complete format specification.

## Architecture

```
Natural Language → OpenAI Parser → Action Objects → Playwright Executor → Results
```

See [.github/copilot-instructions.md](.github/copilot-instructions.md) for detailed architecture documentation.

## Project Structure

```
agentic-test-framework/
├── agentic_test_framework/
│   ├── actions/          # Action type definitions
│   ├── parser/           # OpenAI integration
│   ├── executor/         # Playwright execution engine
│   ├── runner/           # Test orchestration
│   └── reporter/         # HTML report generation
├── config/               # Configuration files
├── examples/             # Example test scenarios
├── docs/                 # Documentation
└── tests/                # Framework tests
```

## HTML Reports

Every test automatically generates a beautiful HTML report with:
- ✅ Pass/fail status for each step
- 📸 Embedded screenshots
- 📊 Extracted data
- ⏱️ Execution timing
- 🎨 Color-coded results

Reports are saved to `test-results/report_YYYYMMDD_HHMMSS.html`

See [docs/HTML_REPORTS.md](docs/HTML_REPORTS.md) for details.

## Development

### Running Unit Tests

The framework includes a comprehensive test suite with pytest:

```bash
# Run all tests
pytest

# Run with verbose output
pytest -v

# Run with coverage report
pytest --cov=agentic_test_framework --cov-report=html

# Run specific test file
pytest tests/test_actions.py

# Open coverage report in browser
xdg-open htmlcov/index.html  # Linux
open htmlcov/index.html       # macOS
```

See [tests/README.md](tests/README.md) for detailed testing documentation.

## License

MIT
