The Commonplace
Home Papers Evidence Explore Trends Syntheses Digests References Docs 🎲 Workforce Futures
← Papers
Direction, evidence grade, and study type are AI-generated labels (gpt-5-mini), not human-verified. Syntheses are LLM-written. "Tensions" are machine-detected candidates, not confirmed contradictions. A research-acceleration tool, not peer review. How this is built →

Multi-agent LLM committees markedly improve automated web testing—raising task success from 78% (single-agent) to 91.7–100% for 2–4 agent configurations and cutting per-action latency to 0.71s—while detecting regressions with F1 of 0.91 and covering most OWASP Top 10 categories.

Multi-Agent LLM Committees for Autonomous Software Beta Testing
Sumanth Bharadwaj Hachalli Karanam, Dhiwahar Adhithya Kennady · December 21, 2025
arxiv descriptive medium evidence 7/10 relevance Full text usable extracted full text Source PDF

Structured author observations

Linked only from stored provider relations; the raw author line above is never matched by name.

Arxiv

Latest observation:

  1. Sumanth Bharadwaj Hachalli Karanam unresolved corpus identity
  2. Dhiwahar Adhithya Kennady unresolved corpus identity

Semantic Scholar

Latest observation:

  1. S. B. H. Karanam provider ID
  2. D. A. Kennady provider ID
A multi-agent, vision-enabled LLM committee that pools diverse personas substantially improves automated web-app testing success rates, speed, and bug-detection F1 compared with single-agent baselines on benchmark tasks.

Citation observations

Cumulative provider counts captured on specific dates; providers are never combined.

Manual software beta testing is costly and time-consuming, while single-agent large language model (LLM) approaches suffer from hallucinations and inconsistent behavior. We propose a multi-agent committee framework in which diverse vision-enabled LLMs collaborate through a three-round voting protocol to reach consensus on testing actions. The framework combines model diversity, persona-driven behavioral variation, and visual user interface understanding to systematically explore web applications. Across 84 experimental runs with 9 testing personas and 4 scenarios, multi-agent committees achieve an 89.5 percent overall task success rate. Configurations with 2 to 4 agents reach 91.7 to 100 percent success, compared to 78.0 percent for single-agent baselines, yielding improvements of 13.7 to 22.0 percentage points. At the action level, the system attains a 93.1 percent success rate with a median per-action latency of 0.71 seconds, enabling real-time and continuous integration testing. Vision-enabled agents successfully identify user interface elements, with navigation and reporting achieving 100 percent success and form filling achieving 99.2 percent success. We evaluate the framework on WebShop and OWASP benchmarks, achieving 74.7 percent success on WebShop compared to a 50.1 percent published GPT-3 baseline, and 82.0 percent success on OWASP Juice Shop security testing with coverage of 8 of the 10 OWASP Top 10 vulnerability categories. Across 20 injected regressions, the committee achieves an F1 score of 0.91 for bug detection, compared to 0.78 for single-agent baselines. The open-source implementation enables reproducible research and practical deployment of LLM-based software testing in CI/CD pipelines.

Summary

Main Finding

Multi-agent committees of vision-enabled LLMs using a three‑round, confidence‑weighted voting protocol substantially improve automated web application beta testing compared to single-agent LLMs. Across 84 runs and 683 action turns, the committee framework achieved 89.5% overall task success (93.1% action success), materially better regression and benchmark performance (e.g., WebShop 74.7% vs. published GPT-3 50.1%), low interaction latencies (median 0.71 s), and strong bug-detection F1 (0.91 vs. 0.78 for single-agent).

Key Points

  • Architecture and protocol

    • Multi-agent committee where each agent (vision-enabled LLM) proposes actions, participates in discussion, then the system selects a consensus action via confidence-weighted votes across three rounds (independent proposal → discussion/refinement → final vote).
    • Agents are heterogeneous (GPT-4o, Gemini 2.5 Pro Flash, Grok 2 Vision 1212) and persona-conditioned to induce behavioral diversity.
    • Vision‑first approach: agents analyze screenshots and DOM hints; actions executed via Playwright.
    • Safety validators detect SQLi, XSS, command injection, path traversal, and business‑logic anomalies before execution.
  • Empirical performance (summary statistics)

    • Total runs: 84; total action turns: 683; personas tested: 9; scenarios: 4.
    • Overall task success: 89.5%; overall action success: 93.1%.
    • Committee scaling: single-agent 78.0% task success; multi-agent (2–4 agents) 91.7–100% task success. reported 2-agent = 100%, 3-agent = 95.3%, 4-agent = 91.7% (note non-monotonicity in these limited runs).
    • Action-type success: navigation 100%, reporting 100%, form filling 99.2%, clicking 83.5%, scrolling 50.0%.
    • Latency: mean 0.87 s, median 0.71 s, P95 1.92 s (security-heavy scenarios higher, e.g., OWASP mean 2.65 s).
    • Regression detection (20 injected bugs): precision 0.94, recall 0.89, F1 0.91 for committees vs. 0.82 / 0.75 / 0.78 for single-agent.
    • Benchmarks: WebShop 74.7% (vs. GPT-3 baseline 50.1%); OWASP Juice Shop 82.0% coverage across 8 of 10 OWASP Top 10 categories.
    • Committees reported 100% agreement on final actions in multi-agent configurations.
  • System & reproducibility

    • Implementation uses Playwright, FastAPI AUTs (TechStore, OWASP Juice Shop), multi-provider LLM clients, and SQLite logging (normalized schema) — runs seeded for reproducibility.
    • Dataset/scenarios: TechStore e‑commerce with injected vulnerabilities, standard OWASP Juice Shop, WebShop tasks.
    • Statistical analysis: ANOVA + Tukey HSD, t‑tests, bootstrap CIs, Bonferroni correction.

Data & Methods

  • Models and setup

    • Vision-capable LLMs: GPT-4o (OpenAI), Gemini 2.5 Pro Flash (Google), Grok 2 Vision 1212 (xAI).
    • Temperature 0.7, max tokens 4096, multimodal input (screenshot + textual context + DOM snippets).
    • Action space: navigate(url), click(selector), fill(selector, text), scroll(direction), report(message).
    • Personas: 9 YAML-defined personas (Online Shopper, Accessibility Tester, Adversarial Attacker, Malicious User, Mobile Shopper, Price Manipulator, Project Manager, UX Researcher, Curious Blogger) encoding goals and behavioral traits.
  • Voting protocol (Algorithmic detail)

    • Round 1: independent proposals (action + confidence + rationale).
    • Round 2: agents see proposals and may revise (empirically ~20% revise).
    • Round 3: aggregate unique actions by summing confidence values for agents who chose each action; choose action with maximum total confidence (confidence-weighted voting).
  • Automation and validators

    • Playwright handles action execution with retry/error handling; screenshots and updated DOM captured each turn.
    • Validators (regex and pattern detectors) flag/optionally block dangerous payloads: SQLi, XSS, command/path traversal, and business logic anomalies.
  • Evaluation

    • Experiments: scaling (1–4 agents), persona diversity (9 personas), regression detection (20 injected), OWASP Juice Shop security, WebShop tasks.
    • Primary metrics: task success, action success, precision/recall/F1 for bug detection. Secondary: agreement, consensus strength, latencies, validator triggers.
    • Statistical tests as above; random seeds used to make runs reproducible.

Implications for AI Economics

  • Productivity and cost tradeoffs

    • Potential to significantly reduce manual QA costs (manual testing often consumes 20–40% of dev budgets). Higher task and bug-detection rates suggest fewer missed regressions and earlier defect resolution — measurable savings in downstream development and support.
    • Multi-agent committees increase API usage and thus per-test compute/API cost compared to single-agent approaches. However, the paper’s latencies (median 0.71 s per action) imply real-time or CI-friendly operation; organizations must weigh higher per-run LLM/API costs against labor savings and faster release cycles.
    • Diminishing returns and non-monotonic committee-size effects observed (2-agent achieved best in reported runs) suggest a practical sweet spot (e.g., 2–3 diverse models) that balances marginal benefit and cost.
  • Market and product structure

    • Model-heterogeneity and multi-provider orchestration strengthen multi-vendor ecosystems: testing platforms can combine models to improve reliability and reduce vendor lock-in, creating new market niches for orchestration middleware, validators, and audit tooling.
    • Open-source reproducible framework lowers entry barriers for startups and in-house teams to build LLM-driven QA offerings, increasing competition and potentially driving down prices for automated testing services.
  • Labor and organizational impacts

    • Shift in QA roles from manual click/path exploration toward supervising LLM committees, writing persona scenarios, validator rule maintenance, interpreting reports, and triaging flagged vulnerabilities.
    • Demand for staff with prompt-engineering, ML oversight, and security expertise may rise; routine, repetitive testing could be automated, reallocating human testers to higher-value tasks (design, exploratory test strategy).
  • Risk, regulation, and liability

    • Adversarial personas and active security probing require strict governance; automated agents executing crafted payloads create legal/ethical considerations in multi-tenant or production environments.
    • Validators and logging (full reproducible traces) are critical for compliance, auditing, and liability mitigation; economic adoption will hinge on robust safety controls and demonstrable false‑positive/false‑negative rates.
    • Model errors (hallucinations) remain a risk but are mitigated by committee consensus; buyers should consider residual risk and the cost of missed critical bugs.
  • Measurement of ROI and procurement

    • Key KPIs for procurement: improvement in bug-detection F1, reduction in mean time to detect/fix regressions, decreased manual testing hours, and CI throughput gains. The paper’s reported F1 lift (0.78 → 0.91) can be mapped to expected reduction in post-release defects and maintenance costs for ROI calculations.
    • Vendors and internal teams should benchmark committee configurations (model mix, committee size, persona set) to optimize marginal returns per dollar of API/compute cost.
  • Innovation and market externalities

    • Reproducible open-source stacks accelerate experimentation and standardization in automated testing, enabling industry-wide improvements in QA productivity.
    • Widespread automated security probing, if misused, could increase attack surface or create an arms race in adversarial testing. Well-governed deployments and shared safety practices will be an economic externality to manage.

Caveats to interpret results economically - Experiments are limited in scale (84 runs, constrained scenarios) and use external API models; production performance and costs will vary with traffic, app complexity, model pricing, and privacy constraints. - Non-monotonic committee-size results and dataset-specific performance suggest organizations should empirically tune committee composition for their applications.

Overall, the study suggests clear economic potential for multi-agent LLM testing products: better defect coverage and faster CI integration at the cost of increased LLM usage, with important governance, safety, and workforce reallocation considerations.

Assessment

Paper Typedescriptive Evidence Strengthmedium — The paper reports large, consistent performance gains across multiple runs, personas and two established benchmarks, and includes an ablation by agent count and regression-injection experiments; however, evidence is limited to benchmark/web-app domains, comparisons appear focused on single-agent baselines that may be outdated or under-tuned, statistical uncertainty and sensitivity analyses are not reported, and there is no field-deployment or worker-productivity measurement showing real-world economic impact. Methods Rigormedium — Evaluation uses multiple runs, diverse personas, established benchmarks (WebShop, OWASP Juice Shop), and concrete metrics (task success, per-action success, latency, F1), and the implementation is open-source; but the study lacks detailed statistical testing (confidence intervals or hypothesis tests), limited variety of target applications and LLM families, unclear baseline tuning parity, no pre-registration or external validation in production CI/CD pipelines, and limited analysis of failure modes or scalability to more complex apps. SampleExperimental system runs on web-application testing tasks: 84 total runs using 9 scripted testing personas across 4 scenarios; evaluated on two benchmarks (WebShop and OWASP Juice Shop), plus 20 injected regressions for bug-detection evaluation; agents are vision-enabled LLMs arranged into multi-agent committees (2–4 agents and larger configurations); reported metrics include overall task success rate, per-action success (with median latency), benchmark success rates, OWASP coverage, and F1 for regression detection. Themesproductivity human_ai_collab IdentificationControlled system evaluation: the authors run repeated experimental trials comparing multi-agent committee configurations (2–4 agents and larger) against single-agent baselines across 84 runs, 9 testing personas, 4 scenarios, and two external benchmarks (WebShop, OWASP Juice Shop); they report task- and action-level success rates, per-action latency, and F1 for injected-regression detection, and perform ablations by agent count and persona diversity to attribute performance differences to the multi-agent design. GeneralizabilityEvaluations limited to web-application testing and two specific benchmarks (WebShop, OWASP Juice Shop), so results may not generalize to desktop or mobile apps or non-web interfaces., Personas and scenarios are simulated/scripted rather than real human testers, which may not capture real-world variability in bug reporting or exploratory testing behavior., Performance depends on the chosen LLMs, vision front-ends, prompt/persona engineering and infrastructure; results may not hold for different model families, versions, or constrained compute environments., Baselines appear to be single-agent LLM setups (and a published GPT-3 baseline); if baselines are not competitively tuned, gains may be overstated., Scalability to larger, more complex applications, long test suites, or adversarial inputs is not demonstrated., Latency and CI/CD suitability reported likely reflect the authors' hardware/hosting setup and may vary in other deployments.

Claims (13)

ClaimDirectionOutcomeConfidence & EvidenceDetails
Manual software beta testing is costly and time-consuming. Organizational Efficiency negative cost and time required for manual beta testing
Reading fidelity high
Study strength speculative
not reported
0.03
Single-agent large language model (LLM) approaches suffer from hallucinations and inconsistent behavior. Other negative model hallucinations and behavioral consistency (qualitative claim)
Reading fidelity high
Study strength medium
not reported
0.18
We propose a multi-agent committee framework in which diverse vision-enabled LLMs collaborate through a three-round voting protocol to reach consensus on testing actions. Other positive ability to reach consensus on testing actions (method specification)
Reading fidelity high
Study strength speculative
not reported
0.03
The framework combines model diversity, persona-driven behavioral variation, and visual user interface understanding to systematically explore web applications. Other positive systematic exploration of web applications (design features)
Reading fidelity high
Study strength speculative
not reported
0.03
Across 84 experimental runs with 9 testing personas and 4 scenarios, multi-agent committees achieve an 89.5 percent overall task success rate. Output Quality positive overall task success rate
Reading fidelity high
Study strength medium
n=84
89.5 percent overall task success rate
0.18
Configurations with 2 to 4 agents reach 91.7 to 100 percent success, compared to 78.0 percent for single-agent baselines, yielding improvements of 13.7 to 22.0 percentage points. Output Quality positive task success rate by agent configuration (2–4 agents vs single-agent)
Reading fidelity high
Study strength medium
n=84
91.7 to 100 percent (multi-agent) vs 78.0 percent (single-agent); improvements 13.7 to 22.0 percentage points
0.18
At the action level, the system attains a 93.1 percent success rate. Output Quality positive per-action success rate
Reading fidelity high
Study strength medium
93.1 percent success rate
0.18
Median per-action latency is 0.71 seconds, enabling real-time and continuous integration testing. Task Completion Time positive median per-action latency
Reading fidelity high
Study strength medium
median per-action latency of 0.71 seconds
0.18
Vision-enabled agents successfully identify user interface elements, with navigation and reporting achieving 100 percent success and form filling achieving 99.2 percent success. Output Quality positive task-specific success rates (navigation, reporting, form filling)
Reading fidelity high
Study strength medium
navigation and reporting: 100 percent success; form filling: 99.2 percent success
0.18
On the WebShop benchmark the framework achieves 74.7 percent success compared to a 50.1 percent published GPT-3 baseline. Output Quality positive benchmark task success rate (WebShop)
Reading fidelity high
Study strength medium
74.7 percent success on WebShop vs 50.1 percent published GPT-3 baseline
0.18
On OWASP Juice Shop security testing the framework achieves 82.0 percent success with coverage of 8 of the 10 OWASP Top 10 vulnerability categories. Output Quality positive benchmark task success rate and vulnerability-category coverage
Reading fidelity high
Study strength medium
82.0 percent success; coverage of 8 of the 10 OWASP Top 10 categories
0.18
Across 20 injected regressions, the committee achieves an F1 score of 0.91 for bug detection, compared to 0.78 for single-agent baselines. Error Rate positive F1 score for bug detection
Reading fidelity high
Study strength medium
n=20
F1 = 0.91 (committee) vs 0.78 (single-agent baseline)
0.18
The open-source implementation enables reproducible research and practical deployment of LLM-based software testing in CI/CD pipelines. Adoption Rate positive reproducibility and practical deployability (asserted capability)
Reading fidelity high
Study strength low
not reported
0.09

Notes