obdfcascrape/tests/data/gi/unit/get-text-not-in-matching-elements.html
Martin Donnelly be5d3eae07 init
2019-05-05 20:13:56 +01:00

26 lines
519 B
HTML

<div id="fixture1">
<p>This text A should match.</p>
<div class="foo">
This text B should not match.
</div>
</div>
<div id="fixture2">
<p>This text C should match.</p>
<div class="foo">
This text D should not match.
</div>
<p>This text E should match.</p>
</div>
<div id="fixture3">
<div>
This text F should match.
<ul>
<li>This text G should match.</li>
<li class="bar">This text H should not match.</li>
<li>This text I should match.</li>
</ul>
</div>
</div>