Files
gstack/test/fixtures/basic.html
T
Garry Tan 27b28b048d test: 40 integration tests with fixture server
Tests all commands against local Bun test server serving HTML fixtures.
Covers navigation, content extraction, JS/CSS inspection, form interaction,
SPA rendering, console/network buffers, tabs, screenshots, responsive,
diff, chain, and storage.

40 pass, 0 fail, 2s runtime.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-11 14:23:45 -07:00

34 lines
914 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Test Page - Basic</title>
<style>
body { font-family: "Helvetica Neue", sans-serif; color: #333; margin: 20px; }
h1 { color: navy; font-size: 24px; }
.highlight { background: yellow; padding: 4px; }
.hidden { display: none; }
nav a { margin-right: 10px; color: blue; }
</style>
</head>
<body>
<nav>
<a href="/page1">Page 1</a>
<a href="/page2">Page 2</a>
<a href="https://external.com/link">External</a>
</nav>
<h1 id="title">Hello World</h1>
<p class="highlight">This is a highlighted paragraph.</p>
<p class="hidden">This should be hidden.</p>
<div id="content" data-testid="main-content" data-version="1.0">
<p>Some body text here.</p>
<ul>
<li>Item one</li>
<li>Item two</li>
<li>Item three</li>
</ul>
</div>
<footer>Footer text</footer>
</body>
</html>