I have piece of HTML like this:
<dt>name</dt> <dd>value</dd> <dt>name2</dt> <dd>value2</dd>
I want to find all places where the structure is incorrect, meaning there is no dd tag after dt tag.
I tried this:
//dt/following-sibling::dt
but this doesn't work. Any suggestions?