Having trouble selecting one of the navigation tabs on a webpage, even after coding for ID, password, and other screens. I've tried various combinations of "GetElementBy" without success. The tabs don't seem to be in their own frame. Here is the HTML code for the tabs. Any help on quickly selecting a tab would be much appreciated.
<ul class="nav nav-tabs">
<li ng-class="{active:isSet(1)}" class="active">
<a href="" role="tab" data-toggle="tab" ng-click="setTab(1)">
Prototypes
</a>
</li>
<li ng-class="{active:isSet(2) || isSet(3)}">
<a href="" role="tab" data-toggle="tab" ng-click="setTab(2);">
Devices
</a>
</li>
<li ng-class="{active:isSet(4)}" ng-show="!IsInitialRelease">
<a href="" role="tab" data-toggle="tab" ng-click="setTab(4)">
Notices
</a>
</li>
<li ng-class="{active:isSet(9)}" ng-show="!IsInitialRelease">
<a href="" role="tab" data-toggle="tab" ng-click="setTab(9)">
Assembly Details
</a>
</li>
<li ng-class="{active:isSet(7)}" ng-show="!IsInitialRelease">
<a href="" role="tab" data-toggle="tab" ng-click="setTab(7)">
Waivers
</a>
</li>
<li ng-class="{active:isSet(8)}" ng-show="!IsInitialRelease">
<a href="" role="tab" data-toggle="tab" ng-click="setTab(8)">
Notifications
</a>
</li>
<li ng-class="{active:isSet(5)}" ng-show="!IsInitialRelease">
<a href="" role="tab" data-toggle="tab" ng-click="setTab(5)">
Permits
</a>
</li>
<li ng-class="{active:isSet(6)}">
<a href="" role="tab" data-toggle="tab" ng-click="setTab(6)">
Search
</a>
</li>
</ul>