> ## Documentation Index
> Fetch the complete documentation index at: https://docs.bubench.lexmount.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Benchmarks 概览

> browseruse-bench 支持的浏览器评测基准

browseruse-bench 集成了多个主流的浏览器评测基准，覆盖不同类型的 Web 交互任务。

## 已支持的 Benchmarks

<CardGroup cols={1}>
  <Card title="LexBench-Browser" icon="globe" href="lexbench-browser">
    **推荐** - 真实场景驱动的浏览器 Agent 评测基准，包含 210 个任务，覆盖 107 个中英文网站，无需登录。
  </Card>

  <Card title="Online-Mind2Web" icon="brain" href="online-mind2web">
    基于 Mind2Web 数据集的在线评测，测试 Agent 在真实网站上的导航和交互能力。
  </Card>

  <Card title="BrowseComp" icon="trophy" href="browsecomp">
    浏览器操作竞赛任务，评估 Agent 的综合浏览器操作能力。
  </Card>
</CardGroup>

## 功能对比

| Benchmark        | 任务数  | 语言    | 评估方式     | 需要登录 |
| ---------------- | ---- | ----- | -------- | ---- |
| LexBench-Browser | 210  | zh/en | LLM 视觉评估 | 否    |
| Online-Mind2Web  | 300  | 英文    | WebJudge | 否    |
| BrowseComp       | 1266 | 英文    | Grader   | 否    |

## 快速对比运行

```bash theme={null}
# LexBench-Browser（推荐，无需登录）
bubench run --agent browser-use --data LexBench-Browser --mode first_n --count 5

# Online-Mind2Web
bubench run --agent browser-use --data Online-Mind2Web --mode first_n --count 5

# BrowseComp
bubench run --agent browser-use --data BrowseComp --mode first_n --count 5
```

## 数据位置

所有 Benchmark 数据存放在 `benchmarks/` 目录中：

| Benchmark        | 数据文件路径                              |
| ---------------- | ----------------------------------- |
| LexBench-Browser | `benchmarks/LexBench-Browser/data/` |
| Online-Mind2Web  | `benchmarks/Online-Mind2Web/data/`  |
| BrowseComp       | `benchmarks/BrowseComp/data/`       |

关于数据加载配置的更多详情（包括 HuggingFace 支持和私有数据集），请参考 [数据加载](/zh/benchmarks/data-loading) 指南。

## 计划支持

* [ ] 更多 Benchmark

<Note>
  如果你希望添加新的 Benchmark，请参考[自定义 Benchmark](/zh/benchmarks/custom-benchmark) 指南。
</Note>
