One issue with handsontable in Selenium project

Viewed 17

Good day! I faced one issue with handsontable on my project

For automation we use Selenium + Java

The handsontable render only visible part of the table. It is easy to manage it by xpath/ or CSS locator. But I cant manage invisible part of the table.

For example:

//div[contains(@class,"ht_master")]//tbody/tr[5]/td[5] - the cell present on visible part of the table and I can nabage it
//div[contains(@class,"ht_master")]//tbody/tr[15]/td[5] - the cell present on hidden part and - element is not exist

Scrolling is not good approach, also change zoom also.

So maybe someone faced the same issue? How to avoid that case and how I can save all rows in collection?

0 Answers
Related