obdfcascrape/tests/data/gi/unit/get-text-not-in-matching-elements.html

26 lines
519 B
HTML
Raw Normal View History

2019-05-05 19:13:56 +00:00
<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>