hako/e2e/testserver/test-content/page-with-image.html
Felipe M. d71915a3fb
test(e2e): expand test suite with comprehensive coverage
- Add e2e tests for admin pages (archivers, extractors, rules)
- Add tests for archives, links, navigation, and error handling
- Add search and pagination test coverage
- Implement test web server with Docker container
- Add seed data and helper utilities for tests
- Update webapp components for permission handling
- Generate HTML reports with embedded screenshots

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-01-29 12:49:40 +01:00

48 lines
1.3 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Page with Images</title>
</head>
<body>
<header>
<h1>Image Test Page</h1>
<nav>
<a href="/">Back to Home</a>
</nav>
</header>
<main>
<h2>Testing Image Archiving</h2>
<p>This page includes various images to test archiving functionality.</p>
<section>
<h3>Test Images</h3>
<div>
<img src="test-image.jpg" alt="JPEG Test Image" width="300">
<p>JPEG Image</p>
</div>
</section>
<section>
<h3>Image Gallery</h3>
<div style="display: flex; gap: 20px; flex-wrap: wrap;">
<div>
<img src="test-image.jpg" alt="Gallery Image 1" width="200">
</div>
<div>
<img src="test-image.jpg" alt="Gallery Image 2" width="200">
</div>
<div>
<img src="test-image.jpg" alt="Gallery Image 3" width="200">
</div>
</div>
</section>
</main>
<footer>
<p>&copy; 2026 Test Website</p>
</footer>
</body>
</html>