Hi All, Can someone kindly suggest. what should I do to click on the button that has clalimsv1 on it..

I tried the following code but it doesnt help...

source code from webpage:
HTML Code:
div 
Class="tswa_ttext">Claimsv1</div>


my vba code:

For Each oHTML_Element In HTMLDoc.getElementsByTagName("div")
If oHTML_Element.innerHTML = "Claimsv1" Then oHTML_Element.Click: Exit For

Next