I have an issue regarding the View Settings dialog in UI5 apps:
I have an assertion to check number of records in View Settings dialog:
expect(settingsWindow.getAllPossibleFields().count()).toEqual(Constants.adaptTable.additionalColumns.length); //shoul be some number, in this case 66
getAllPossibleFields() {
let xpath = '//td[@class="sapMListTblCell"]//bdi';
return this.getAllByXPath(xpath);
In all of our apps no matter how many records in View Settings dialog there is, It seems the limit stored in the count() is always 25

I have an issue regarding the View Settings dialog in UI5 apps:
I have an assertion to check number of records in View Settings dialog:
expect(settingsWindow.getAllPossibleFields().count()).toEqual(Constants.adaptTable.additionalColumns.length); //shoul be some number, in this case 66
In all of our apps no matter how many records in View Settings dialog there is, It seems the limit stored in the count() is always 25
