I have a div that contains several, but a varying amount of h3s (as well as a lot of p but they can be ignored). The last h3 has a constat value (but no class or id). There is also an img with some, probably unique, properties a the end of the div. All in all it looks something like this:
<div class="article__body">
<p>value</p>
<h3>changing value</h3>
<p>value</p>
<p>value</p>
<h3>changing value</h3>
<h3>changing value</h3>
*and so on for a bit*
<h3>THIS IS THE VALUE I AM INTEREST IN</h3>
<h3>THIS VALUE IS CONTSTANT</h3>
<img srcset="/siteassets/lobby.png?preset=340&version=63684897580 340w">
</div>
</div>
<aside class="service">
Can I go to either to the h3 with the constant value, the img or maybe the aside tag outside this div (and one more level of divs) and then step back to the h3 I am interested in?