Below is a Piece of Code having three elements with same attributes. How do i access the third element(3rd div).
<pre>
<div class="tab-bar ons-tab-bar__footer ons-tabbar-inner" qmx-tabs="">
<div class="tab-bar__item ng-scope" ng-repeat="tab in tabbarTabsList track by tab.page">
<div class="tab-bar__item ng-scope" ng-repeat="tab in tabbarTabsList track by tab.page">
<button class="tab-bar__button tab-bar-inner qmx-tab-active" ng-class="{'qmx-tab-active' : $index === activeTabIndex }" ng-click="loadTab($index)">
</div>
<div class="tab-bar__item ng-scope" ng-repeat="tab in tabbarTabsList track by tab.page">
<button class="tab-bar__button tab-bar-inner" ng-class="{'qmx-tab-active' : $index === activeTabIndex }" ng-click="loadTab($index)">
</div>
</div>
</div>
</pre>
I need to use findElement(By.) method.