Ben Heckmann 2d65742443
feat: arbitrary crawler_depth for Crawler class (#4623)
* #3674 implemented iterative crawler depth

* #3674 added two tests for increased crawler depth

* removed old comment
2023-04-11 10:39:17 +02:00

14 lines
328 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Test Page 1 for Crawler</title>
</head>
<body>
<p>page 1 content</p>
<a href="index.html">link to home</a>
<a href="page2.html">link to page 2</a>
<a href="page1_subpage1.html">link to subpage 1</a>
<a href="page1_subpage2.html">link to subpage 2</a>
</body>
</html>