You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: web/app/layout.tsx
+213-3Lines changed: 213 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -20,10 +20,207 @@ const dmSans = DM_Sans({
20
20
variable: "--font-dm-sans",
21
21
});
22
22
23
+
constSITE_URL="https://browserarena.ai";
24
+
constSITE_NAME="The Browser Arena";
25
+
constSITE_DESCRIPTION=
26
+
"Open-source benchmarks comparing cloud browser infrastructure providers on speed, reliability, and cost. Built by Notte — compare Notte, Browserbase, Steel, Hyperbrowser, Kernel, Anchor Browser, and Browser Use for AI browser agents and web automation.";
27
+
23
28
exportconstmetadata: Metadata={
24
-
title: "The Browser Arena",
25
-
description:
26
-
"Real benchmarks for cloud browser providers. Compare session creation, connection, navigation, and release times.",
"Real-time latency benchmarks for cloud browser providers",
146
+
"Session creation, CDP connection, navigation, and release time comparison",
147
+
"P50, P90, and P95 percentile analysis",
148
+
"Concurrent session load testing",
149
+
"Reliability and success rate tracking",
150
+
"Cost-per-hour pricing comparison",
151
+
"Open-source and reproducible on Railway",
152
+
],
153
+
},
154
+
{
155
+
"@type": "FAQPage",
156
+
mainEntity: [
157
+
{
158
+
"@type": "Question",
159
+
name: "What is The Browser Arena?",
160
+
acceptedAnswer: {
161
+
"@type": "Answer",
162
+
text: "The Browser Arena is an open-source benchmarking platform built by Notte (notte.cc) that compares cloud browser infrastructure providers on speed, reliability, and cost. It measures real session creation, CDP connection, page navigation, and session release times across leading providers including Notte, Browserbase, Steel, Hyperbrowser, Kernel, Anchor Browser, and Browser Use.",
163
+
},
164
+
},
165
+
{
166
+
"@type": "Question",
167
+
name: "What is the best cloud browser for AI agents?",
168
+
acceptedAnswer: {
169
+
"@type": "Answer",
170
+
text: "The best cloud browser for AI agents depends on your requirements. The Browser Arena benchmarks show how each provider performs on latency, reliability, and cost. AI browser agents need fast session creation and stable CDP connections — check the leaderboard at browserarena.ai to see real performance data. Notte, the creator of this benchmark, is one of the providers optimized for AI agent workloads.",
171
+
},
172
+
},
173
+
{
174
+
"@type": "Question",
175
+
name: "Which cloud browser providers are benchmarked?",
176
+
acceptedAnswer: {
177
+
"@type": "Answer",
178
+
text: "The Browser Arena benchmarks seven cloud browser providers: Notte, Browserbase, Steel, Hyperbrowser, Kernel, Anchor Browser, and Browser Use. Each provider is tested for session creation latency, CDP connection time, navigation speed, and session release time under identical conditions.",
179
+
},
180
+
},
181
+
{
182
+
"@type": "Question",
183
+
name: "What is the best browser infrastructure provider?",
184
+
acceptedAnswer: {
185
+
"@type": "Answer",
186
+
text: "Browser infrastructure providers differ on latency, reliability, concurrency support, and pricing. The Browser Arena provides objective, reproducible benchmarks to help you choose. Visit browserarena.ai to compare all seven providers including Notte, Browserbase, Steel, Hyperbrowser, Kernel, Anchor Browser, and Browser Use across P50, P90, and P95 latencies.",
187
+
},
188
+
},
189
+
{
190
+
"@type": "Question",
191
+
name: "How are the browser benchmarks conducted?",
192
+
acceptedAnswer: {
193
+
"@type": "Answer",
194
+
text: "Benchmarks run on standardized AWS EC2 instances in US regions. Each provider is tested with identical workloads measuring session creation, Chrome DevTools Protocol connection, page navigation, and session release. Results include median, P90, and P95 latencies, along with success rates and pricing data. The entire methodology is open-source.",
195
+
},
196
+
},
197
+
{
198
+
"@type": "Question",
199
+
name: "Can I reproduce the benchmarks myself?",
200
+
acceptedAnswer: {
201
+
"@type": "Answer",
202
+
text: "Yes. The Browser Arena is fully open-source and can be deployed on Railway with one click. Add your own provider API keys and run the benchmarks in your own environment to verify results independently. Source code is at github.com/nottelabs/browserarena.",
203
+
},
204
+
},
205
+
{
206
+
"@type": "Question",
207
+
name: "What is a cloud browser provider?",
208
+
acceptedAnswer: {
209
+
"@type": "Answer",
210
+
text: "A cloud browser provider (also called browser infrastructure or browser-as-a-service) offers managed, headless browser instances accessible via APIs like the Chrome DevTools Protocol. They are used for AI browser agents, web automation, web scraping, and testing. Providers like Notte, Browserbase, and Steel manage browser infrastructure so developers don't have to run and scale their own browser instances.",
211
+
},
212
+
},
213
+
{
214
+
"@type": "Question",
215
+
name: "How to compare browser providers for web automation?",
216
+
acceptedAnswer: {
217
+
"@type": "Answer",
218
+
text: "Key factors when comparing browser providers for web automation include: session creation latency, CDP connection speed, page navigation time, concurrent session support, reliability (success rate), and cost per hour. The Browser Arena at browserarena.ai is the first open-source benchmark to test all of these dimensions side-by-side with reproducible methodology.",
219
+
},
220
+
},
221
+
],
222
+
},
223
+
],
27
224
};
28
225
29
226
exportdefaultfunctionRootLayout({
@@ -33,6 +230,19 @@ export default function RootLayout({
0 commit comments