haystack/test/samples/crawler/page_w_hidden_text.html
Stefano Fiorucci c178f60e3a
Make crawler extract also hidden text (#2642)
* make crawler extract also hidden text

* Update Documentation & Code Style

* try to adapt test for extract_hidden_text

* Update Documentation & Code Style

* fix test bug

* fix bug in test

* added test for hidden text"

* Update Documentation & Code Style

* fix bug in test

* Update Documentation & Code Style

* fix test

* Update Documentation & Code Style

* fix other test bug

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2022-06-10 09:51:41 +02:00

10 lines
158 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Test Page</title>
</head>
<body>
<p>visible text</p>
<p style="display: none">hidden text</p>
</body>
</html>