hako/e2e/testserver/test-content/page-with-og.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

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 OpenGraph Metadata</title>
<!-- OpenGraph Metadata -->
<meta property="og:title" content="OpenGraph Test Page">
<meta property="og:description" content="This page tests OpenGraph metadata extraction">
<meta property="og:image" content="http://testserver/test-image.jpg">
<meta property="og:url" content="http://testserver/page-with-og.html">
<meta property="og:type" content="article">
<meta property="og:site_name" content="Test Website">
</head>
<body>
<header>
<h1>OpenGraph Metadata Test Page</h1>
<nav>
<a href="/">Back to Home</a>
</nav>
</header>
<main>
<article>
<h2>Testing OpenGraph Metadata</h2>
<p>This page includes OpenGraph metadata tags that should be extracted during archiving.</p>
<section>
<h3>Metadata Included:</h3>
<ul>
<li><strong>og:title</strong>: OpenGraph Test Page</li>
<li><strong>og:description</strong>: This page tests OpenGraph metadata extraction</li>
<li><strong>og:image</strong>: test-image.jpg</li>
<li><strong>og:type</strong>: article</li>
</ul>
</section>
<section>
<h3>Test Content</h3>
<p>The archiver should extract and store the OpenGraph metadata from this page.</p>
<img src="test-image.jpg" alt="OpenGraph Test Image" width="400">
</section>
</article>
</main>
<footer>
<p>&copy; 2026 Test Website</p>
</footer>
</body>
</html>