- 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>
51 lines
1.8 KiB
HTML
51 lines
1.8 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 Twitter Card Metadata</title>
|
|
|
|
<!-- Twitter Card Metadata -->
|
|
<meta name="twitter:card" content="summary_large_image">
|
|
<meta name="twitter:title" content="Twitter Card Test Page">
|
|
<meta name="twitter:description" content="This page tests Twitter Card metadata extraction">
|
|
<meta name="twitter:image" content="http://testserver/test-image.jpg">
|
|
<meta name="twitter:creator" content="@testuser">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>Twitter Card Metadata Test Page</h1>
|
|
<nav>
|
|
<a href="/">Back to Home</a>
|
|
</nav>
|
|
</header>
|
|
|
|
<main>
|
|
<article>
|
|
<h2>Testing Twitter Card Metadata</h2>
|
|
<p>This page includes Twitter Card metadata tags that should be extracted during archiving.</p>
|
|
|
|
<section>
|
|
<h3>Metadata Included:</h3>
|
|
<ul>
|
|
<li><strong>twitter:card</strong>: summary_large_image</li>
|
|
<li><strong>twitter:title</strong>: Twitter Card Test Page</li>
|
|
<li><strong>twitter:description</strong>: This page tests Twitter Card metadata extraction</li>
|
|
<li><strong>twitter:image</strong>: test-image.jpg</li>
|
|
<li><strong>twitter:creator</strong>: @testuser</li>
|
|
</ul>
|
|
</section>
|
|
|
|
<section>
|
|
<h3>Test Content</h3>
|
|
<p>The archiver should extract and store the Twitter Card metadata from this page.</p>
|
|
<img src="test-image.jpg" alt="Twitter Card Test Image" width="400">
|
|
</section>
|
|
</article>
|
|
</main>
|
|
|
|
<footer>
|
|
<p>© 2026 Test Website</p>
|
|
</footer>
|
|
</body>
|
|
</html>
|