Currently, I am working with an Angular grid (ag-grid) that dynamically creates div elements in the DOM to display data as the user scrolls or views different sections. As part of my testing process using Selenium WebDriver, I need to retrieve this data from the grid and compare it against the data returned from the API.
However, due to some of the div's being hidden behind Angular virtualization, WebDriver is unable to accurately capture all the data.
I am looking for a solution to force the grid to display all data at once. Is there a way to achieve this?