WPT-Gen is an agentic CLI tool designed to increase browser interoperability by automating the creation of Web Platform Tests (WPT).
By bridging the gap between W3C Specifications and local WPT repositories, WPT-Gen uses Large Language Models (LLMs) to proactively identify testing gaps and generate high-quality, compliant test cases.
Browser interoperability is critical for the web. While the W3C and WHATWG write specifications, there is often a gap between those specs and the tests that ensure browsers implement them correctly. WPT-Gen bridges this gap by:
- Reducing Manual Effort: Automating the tedious process of mapping spec assertions to existing tests.
- Ensuring High Coverage: Identifying missing edge cases and suggesting specific test scenarios.
- Standardizing Compliance: Generating tests that adhere to strict WPT style guides and directory structures.
- Context Assembly: Automatically resolves Web Feature IDs (via
web-features) to fetch W3C Spec URLs and technical documentation. - Deep Local Analysis: Scans your local WPT repository using
WEB_FEATURES.ymlmetadata to identify existing tests and their dependencies. - Gap Analysis: Compares technical requirements synthesized from specifications against current test coverage to pinpoint missing assertions.
- Test Suggestions: Brainstorms specific, actionable test scenarios (blueprints) that address identified gaps.
- Automated Generation: Produces atomic, WPT-compliant HTML and JavaScript test files based on user-approved blueprints.
- Multi-Provider Support: Built-in support for Google Gemini (via
google-genai), OpenAI, and Anthropic models.
WPT-Gen follows a structured, multi-phase agentic workflow. Each phase is designed to build upon the last, culminating in high-quality, verified test cases.
flowchart TD
subgraph Context[Context Assembly]
A[Web Features] --> B[Scrape Specs/MDN]
C[Local WPT Repo] --> D[Index Existing Tests]
end
subgraph Analysis[Requirement & Gap Analysis]
B & D --> E{{Phase 2: Requirements Extraction}}
E --> F{{Phase 3: Coverage Audit}}
F --> G[Test Blueprints]
end
subgraph Generation[Test Generation & Execution]
G --> H{{Phase 4: Test Generation}}
H --> I{{Phase 5: Evaluation & Self-Correction}}
I --> J[Phase 6: Test Execution]
end
classDef llm fill:#4B0082,stroke:#333,stroke-width:2px;
class E,F,H,I llm;
- Phase 1: Context Assembly: Aggregates the "Source of Truth" from external documentation (W3C Specs, MDN) and identifies existing test coverage in the local WPT repository.
- Phase 2: Requirements Extraction: Uses an LLM to synthesize specification text into structured, granular technical requirements. Supports parallel and iterative extraction modes for complex specs.
- Phase 3: Coverage Audit: Performs a delta analysis by comparing the synthesized requirements against the local test suite. This phase outputs an audit worksheet and high-level test blueprints.
- Phase 4: Test Generation: Translates user-selected blueprints into functional WPT-compliant code (JavaScript, Reftests, or Crashtests) using Jinja2 templates and specific style guide instructions.
- Phase 5: Evaluation (Self-Correction): A secondary LLM pass reviews the generated code against WPT standards and the original requirements, providing fixes or optimizations before final output.
- Phase 6: Test Execution: Integrates with the
./wpt runCLI to verify that the newly generated tests are valid and functional in a real browser environment.
- Python 3.10+
- Local WPT Repository: A local checkout of web-platform-tests/wpt.
- API Key: An API key for a supported LLM (Gemini, OpenAI, or Anthropic).
# Clone the repository
git clone https://github.com/google/wpt-gen.git
cd wpt-gen
# Install the package (using a virtual environment is recommended)
python -m venv .venv
source .venv/bin/activate
pip install -e .To install development dependencies:
pip install -e ".[dev]"WPT-Gen uses a combination of a YAML configuration file and environment variables.
You must export the API key for your chosen provider. These are never stored on disk.
export GEMINI_API_KEY="your_gemini_api_key"
# OR
export OPENAI_API_KEY="your_openai_api_key"
# OR
export ANTHROPIC_API_KEY="your_anthropic_api_key"Create a wpt-gen.yml in the root of the project to manage defaults:
default_provider: gemini
wpt_path: /path/to/your/local/wpt # Path to your local WPT checkout
show_responses: false # Set to true to see raw LLM outputs by default
providers:
gemini:
default_model: gemini-3.1-pro-preview
categories:
lightweight: gemini-3-flash-preview
reasoning: gemini-3.1-pro-preview
openai:
default_model: gpt-5.2-high
categories:
lightweight: gpt-5-mini
reasoning: gpt-5.2-high
anthropic:
default_model: claude-opus-4-6
categories:
lightweight: claude-sonnet-4-6
reasoning: claude-opus-4-6
phase_model_mapping:
requirements_extraction: reasoning
coverage_audit: reasoning
generation: lightweightThe primary interface is the generate command, which requires a Web Feature ID (as defined in the web-features repository).
wpt-gen generate grid| Option | Shorthand | Description |
|---|---|---|
web_feature_id |
(Arg) | Required. The ID of the feature (e.g., grid, popover). |
--provider |
-p |
Override the default LLM provider (gemini, openai, or anthropic). |
--wpt-dir |
-w |
Override the path to the local web-platform-tests repository. |
--config |
-c |
Path to a custom wpt-gen.yml file. |
--show-responses |
-s |
Display every LLM-generated response to the user. |
--use-lightweight |
Use the provider's lightweight model for all LLM requests. | |
--use-reasoning |
Use the provider's reasoning model for all LLM requests. |
We use pytest for unit and integration testing.
pytestWe use ruff to maintain code quality and mypy for type checking.
# Lint and format
ruff check .
ruff format .
# Type check
mypy .This repository includes a GEMINI.md and a suite of AI skills in the .agents/skills/ directory to help AI assistants (like Gemini Code Assist) better understand the project's architecture, dependencies, and testing standards. You can point your AI assistant to GEMINI.md for a comprehensive overview of how to contribute accurately to the codebase.
Apache 2.0. See LICENSE for more information.
Every file containing source code must include copyright and license information.
Apache header:
Copyright 2026 Google LLC
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.