mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-04-05 19:01:12 -07:00
28 lines
713 B
HTML
28 lines
713 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>Test Fixture - Home</title>
|
|
</head>
|
|
<body>
|
|
<h1 id="main-heading">Test Fixture Home Page</h1>
|
|
<p id="description">
|
|
This is a test fixture page for browser agent integration tests.
|
|
</p>
|
|
<nav>
|
|
<ul>
|
|
<li><a href="/form.html" id="form-link">Contact Form</a></li>
|
|
<li>
|
|
<a href="/multi-step/step1.html" id="multistep-link"
|
|
>Multi-Step Flow</a
|
|
>
|
|
</li>
|
|
<li><a href="/dynamic.html" id="dynamic-link">Dynamic Content</a></li>
|
|
</ul>
|
|
</nav>
|
|
<footer id="footer">
|
|
<p>Footer content for testing.</p>
|
|
</footer>
|
|
</body>
|
|
</html>
|