So I have this html code here:
<button id="PageHeader-primaryActionButton" type="button" class="btn btn-primary btn-xs" ng-click="addCandidate()">Add candidate</button>
And I'm trying to write it into PAD's custom selector. This is what I've come up with so far:
li[Class="ng-scope"]:eq(1) > button[Class="btn btn-primary btn-xs"][Id="vuePageHeader-primaryActionButton"]
But I don't know where to put the ng-click="addCandidate()">Add candidate</button> part into.
Any help would be appreciated! Thanks