Reputation: 9
I would like to learn how to click on a span element with AutoIt. Here is the code for the span element.
<span class="ng-binding">Reports</span>
This is what the span looks like as a button:
Upvotes: 0
Views: 793
Reputation: 630
Based on your element, you can try with this function:
_IEGetObjByClass($oIE, 'ng-binding')
Upvotes: 1