I'm trying to made a click on a button that does not have an ID or a Name; I tried using tabs, but it didn't work, and I tried the following code, but it doesn't do anything:
Set tags = Ie.document.getElementsByTagName("button")
For Each tagx In tags
If tagx.Value = "Save" Then
tagx.onclick
Exit For
End If
Next
And here is the HTML markup:
<div class="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix">
<div class="ui-dialog-buttonset">
<button type="button" class="ui-button ui-widget ui-state-default ui-corner-all ui-button-text-only" role="button" aria-disabled="false"><span class="ui-button-text">Cancel</span></button>
<button type="button" class="ui-button ui-widget ui-state-default ui-corner-all ui-button-text-only" role="button" aria-disabled="false"><span class="ui-button-text">Save</span></button>
</div>
</div>
The
tagx.Value
is always empty. Check Html-Button Value attribute information here.The buttons seems to have
Span
with text Save or Cancel inside of it so you could check fortagx.innerText
to find the save button and then callClick
method on it.