Configuration¶
WebArenaVerifiedConfig¶
WebArenaVerifiedConfig
¶
Main configuration for WebArena-Verified evaluation framework.
Specifies dataset location, environment configurations for each site, and file names for task outputs.
Attributes:
| Name | Type | Description |
|---|---|---|
test_data_file |
Path
|
Path to the WebArena-Verified dataset JSON file. Can be absolute or relative
to project root (directory containing |
environments |
dict[WebArenaSite, EnvironmentConfig] | None
|
Maps site placeholder names (e.g., |
agent_response_file_name |
str
|
Filename for agent response JSON file containing the agent's final answer. Used directly without modification. |
trace_file_name |
str
|
Filename for network trace file in HAR format, containing recorded browser network activity. Used directly without modification. |
eval_result_file_name |
str
|
Filename for evaluation result JSON file containing pass/fail status and evaluation details. Used directly without modification. |
storage_state_file_name |
str
|
Filename for browser storage state JSON file containing cookies and auth tokens for pre-login. Used directly without modification. |
Example
Source code in src/webarena_verified/types/config.py
337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 | |
test_data_file = get_package_assets_path() / 'dataset/webarena-verified.json'
class-attribute
instance-attribute
¶
environments = None
class-attribute
instance-attribute
¶
agent_response_file_name = 'agent_response.json'
class-attribute
instance-attribute
¶
trace_file_name = 'network.har'
class-attribute
instance-attribute
¶
eval_result_file_name = 'eval_result.json'
class-attribute
instance-attribute
¶
storage_state_file_name = '.storage_state.json'
class-attribute
instance-attribute
¶
EnvironmentConfig¶
EnvironmentConfig
¶
Configuration for a single environment/site.
Supports multiple environment variations (e.g., staging, production) for the same site. When evaluating across multiple test environments, any URL in the list can be mapped back to the template placeholder, allowing you to evaluate logs from different environments using the same task definitions.
Attributes:
| Name | Type | Description |
|---|---|---|
urls |
list[str]
|
List of all possible URLs for this environment (e.g., production, staging, dev instances).
During evaluation, any URL in this list can be derendered to the same template placeholder.
Example: Both |
active_url_idx |
int | None
|
Selects which URL from the |
use_header_login |
bool
|
Optional flag to enable header-based authentication for this environment. When True, authentication is performed via HTTP headers (e.g., X-M2-Admin-Auto-Login-User) instead of traditional UI login. Only supported for certain sites (e.g., shopping_admin). Defaults to False. |
credentials |
dict[str, str] | None
|
Optional authentication credentials for this environment (e.g., username, password). Used for automated login before task execution. |
extra |
dict[str, Any]
|
Additional configuration data for this environment as a flexible key-value store. Can hold any site-specific configuration (e.g., {"container_name": "my-container"}). |
Example
If you have logs from staging (https://gitlab-staging.com) and production
(https://gitlab-prod.com), both can be derendered to __GITLAB__ during evaluation.
The active_url_idx determines which variant is used when rendering templates to real URLs.
Source code in src/webarena_verified/types/config.py
102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 | |
Supported Site Placeholders¶
| Placeholder | Description |
|---|---|
__SHOPPING_ADMIN__ |
Shopping admin dashboard |
__SHOPPING__ |
Shopping customer site |
__REDDIT__ |
Reddit-like forum |
__GITLAB__ |
GitLab instance |
__WIKIPEDIA__ |
Wikipedia instance |
__MAP__ |
Map application |
__HOMEPAGE__ |
Homepage/portal |