Hi i have this specific HTML Code and i can’t find the right XPath for this specific HTML block so i can parse it
<aside id="id1">
<dl class="class1a class1b">
<dd>value1</dd>
<dt><em>**value2**</em> value3</dt>
</dl>
<dl class="class2a class2b">
<dd>value4</dd>
<dt class="class3">
<strong>**value5**<span>value6</span></strong>
</dt>
</dl>
</aside>
The thing is that i need value2 and value5
How can i achieve it?
1 Answer