I am working on modifying a fairly extensive VBA Web scraper and looking for some advice on how to get elements by id when there is no actual id specified.
<ul class="rtUL">
<li class="rtLI"><div class="rtMid">
<span class="rtSp"></span><span class="rtPlus"></span>
<a class="rtIn" href="/mhpviewer.aspx?FID=CSTAT">Claim Status</a>
</div></li><li class="rtLI"><div class="rtMid">
<span class="rtSp"></span><span class="rtPlus"></span>
<a class="rtIn" href="/mhpviewer.aspx?FID=EVER">Eligibility Verification</a>
The element I need to get is the <li>
containing "Eligibility Verification". Is there a way to get children elements or just inner HTML?