项目文件夹

文件
Samiya Caur 8e8e83e3f8 test: update all the eval scenarios to work with experimentalPageIdRouting flag (#2085)
Refs #2052 

This change updates all the eval scenarios so that they work with and
without experimentalPageIdRouting flag

Co-authored-by: Samiya Caur <samiyac@chromium.org>
2026-05-20 09:46:18 +00:00

32 行
775 B
TypeScript

/**
* @license
* Copyright 2026 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import assert from 'node:assert';
import type {TestScenario} from '../eval_gemini.ts';
export const scenario: TestScenario = {
prompt: 'Navigate to <TEST_URL> and list all network requests.',
maxTurns: 3,
htmlRoute: {
path: '/network_test.html',
htmlContent: `
<h1>Network Test</h1>
<script>
fetch('/network_test.html'); // Self fetch to ensure at least one request
</script>
`,
},
expectations: result => {
const pageId = result.consumePageNavigation();
assert.ok(result.remainingCalls.length >= 1);
result.assertNextCall(
'list_network_requests',
result.hasPageIdRouting ? {pageId} : undefined,
);
},
};