framework-architecture

A recommended structure for Selenium tests in Python, with pytest, a testing framework that provides reusable setup functions called fixtures.

In plain words
What is it for?
It is for organizing browser automation projects, managing environment and browser settings, reusing setup code, and keeping dependency versions controlled.
Why use it?
It gives the project a consistent way to separate tests, page models, configuration, test data, logs, and dependencies.

Cursor rule for Cursor

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add rules/tugkanboz/awesome-cursorrules/framework-architecture
Clone the repo
git clone --depth 1 https://github.com/tugkanboz/awesome-cursorrules

Made for: Cursor.

Per session 0 Nothing until a file matches its globs; then the whole rule loads.
When invoked 857 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00000 $0.00857
Opus 5 $0.00000 $0.00428
Sonnet 5 $0.00000 $0.00171
Haiku 4.5 $0.00000 $0.00086

Measured 3d ago against content hash 1dfb7948d82b, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

framework-architecture scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

example-structures/selenium-python/.cursor/rules/framework-architecture.mdc · 121 lines

How it starts

The opening of the file, as written. The whole thing — 121 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Selenium Python Framework Architecture

Modern Framework Foundation

  • pytest Framework: Leverage pytest's powerful fixture system and plugin ecosystem
  • Modular Architecture: Separate concerns with clear package structure
  • Configuration Management: Environment-specific settings with proper inheritance
  • Dependency Management: Pinned versions with regular security updates

Project Structure Best Practices

selenium-project/
├── tests/
│   ├── conftest.py              # Global pytest configuration
│   ├── pages/                   # Page Object Models
│   ├── specs/                   # Test specifications
│   ├── utils/                   # Helper utilities
│   └── data/                    # Test data files
├── config/
│   ├── environments/            # Environment configurations
│   └── browsers/                # Browser configurations
├── reports/                     # Test execution reports
├── logs/                        # Application logs
├── requirements.txt             # Python dependencies
└── pytest.ini                  # pytest configuration

pytest Configuration Excellence

# conftest.py - Global configuration
import pytest
import os
from selenium import webdriver
from selenium.webdriver.chrome.options import Options as ChromeOptions
from webdriver_manager.chrome import ChromeDriverManager

def pytest_addoption(parser):
    """Command line options for flexible test execution."""
    parser.addoption("--browser", action="store", default="chrome")
    parser.addoption("--headless", action="store_true", default=False)
    parser.addoption("--env", action="store", default="dev")
    parser.addoption("--parallel", action="store", default="1")

@pytest.fixture(scope="session")
def browser_config(request):
    """Browser configuration based on command line arguments."""
    return {
        "browser": request.config.getoption("--browser"),
        "headless": request.config.getoption("--headless"),
        "environment": request.config.getoption("--env")
    }

Read the full file on GitHub · 121 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago First seen · 121 lines · 857 tokens per session scan A 1dfb7948d82b

Subscribe to this mod's changes

framework-architecture is a cursor rule published in the GitHub repository tugkanboz/awesome-cursorrules (20 stars, last pushed 4d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 857 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.