<div class="base-view app-loaded" data-ng-class="cssClass.appState">
<div class="ng-scope" data-ng-view="">
<div class="ng-scope" data-ng-include="'partial/navigation/navigation.tpl.html'">
<div class="feedback-ball feedback-ball-show feedback-ball-big" data-ng-class="feedback.cls" data-ng-click="outside($event)" data-feedback-ball="">
<span class="close-button"></span>
<h2 class="ng-binding">Welcome to Garbo</h2>
<div class="ng-scope ng-binding" data-ng-bind-html="feedback.html" data-ng-if="feedback.html">
<p>Discover the elegance of playing in a secure and stylish environment here at Garbo.</p>
<p>
<a class="btn" href="/account">My Account</a>
<a class="btn" href="/deposit">Deposit</a>
</p>
</div>
</div>
</div>
I am attempting to locate and click on the /account button within the data-ng-bind-html="feedback.html". Although I have successfully identified the data-ng-bind-html="feedback.html", I am encountering difficulty in finding the account button within it. The presence of multiple account buttons on the page requires me to be more specific in my approach, leading to errors when I try to select the correct one.
Despite trying various methods such as element().element(), I have not been successful. Assistance would be greatly appreciated.