I am trying to verify a value from a specific column in a huge web table. But none of the locator is unique and selenium cant find all the element. using selenium and cucumber jvm.
below is one of the html code for a cell value:
<div id="1504183962844-0-uiGrid-03UI-cell" class="ui-grid-cell ng-scope ui-grid-coluiGrid-03UI" ng-repeat="(colRenderIndex, col) in colContainer.renderedColumns track by col.uid" ui-grid-one-bind-id-grid="rowRenderIndex + '-' + col.uid + '-cell'" ng-class="{ 'ui-grid-row-header-cell': col.isRowHeader }" role="gridcell" ui-grid-cell="" tabindex="-1">
<div class="ui-grid-cell-contents ng-binding ng-scope">ncautoemail_dtyhe@gmail.com</div>
it has around 80 cell in the row and id keep changing. any advice on locating element and verify the value.