elastik
elastik

Reputation: 9

Click a span element with AutoIt

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:

enter image description here

Upvotes: 0

Views: 793

Answers (1)

Tuan Ha
Tuan Ha

Reputation: 630

Based on your element, you can try with this function:

_IEGetObjByClass($oIE, 'ng-binding')

Upvotes: 1

Related Questions