- 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>
57 lines
1.9 KiB
HTML
57 lines
1.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Test Page - Homepage</title>
|
|
<meta name="description" content="This is a test page for E2E testing">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>Test Website Homepage</h1>
|
|
<nav>
|
|
<ul>
|
|
<li><a href="/">Home</a></li>
|
|
<li><a href="/page-with-og.html">OG Metadata</a></li>
|
|
<li><a href="/page-with-twitter.html">Twitter Card</a></li>
|
|
<li><a href="/page-with-image.html">Images</a></li>
|
|
</ul>
|
|
</nav>
|
|
</header>
|
|
|
|
<main>
|
|
<h2>Welcome to Test Website</h2>
|
|
<p>This is a test page used for E2E testing of the Hako archiver.</p>
|
|
|
|
<section>
|
|
<h3>About This Test Page</h3>
|
|
<p>This page contains various elements to test archiving functionality:</p>
|
|
<ul>
|
|
<li>Text content</li>
|
|
<li>Images</li>
|
|
<li>Links</li>
|
|
<li>Structured data</li>
|
|
</ul>
|
|
</section>
|
|
|
|
<section>
|
|
<h3>Sample Content</h3>
|
|
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
|
|
<img src="test-image.jpg" alt="Test Image" width="300">
|
|
</section>
|
|
|
|
<section>
|
|
<h3>Links</h3>
|
|
<ul>
|
|
<li><a href="page-with-og.html">Page with OpenGraph metadata</a></li>
|
|
<li><a href="page-with-twitter.html">Page with Twitter Card metadata</a></li>
|
|
<li><a href="test-file.zip">Download test file</a></li>
|
|
</ul>
|
|
</section>
|
|
</main>
|
|
|
|
<footer>
|
|
<p>© 2026 Test Website - For E2E Testing Only</p>
|
|
</footer>
|
|
</body>
|
|
</html>
|