Result :
<div id="header"></div>
<div id="body">
<hello>
<world></world>
</hello>
</div>
Mapping to :
div#header+div#body>hello>world
Which command should be used to achieve the desired output below ?
<div id="header">
<hello2>
<world2></world2>
</hello2>
</div>
<div id="body">
<hello>
<world></world>
</hello>
</div>