Hi, I have developed some test which click on links in my table in html page and maps that table to excel table.
Mapping is done this way:
I click on excel cell on which I want to replicate table data (td tag) and than click on link in that table row/column in html table.
So I done this: I created TBodyTag element which represents my table I made
IList<TrTag> trTags = tbodyTag.FindChildren<TrTag>();
And for each TrTag I done IList<TdTag> tdTags = ...
This all goes ok, but since my html table has like 1563 rows when I try to click on excel cell beyond 200 I come to problem where Ranorex don't scroll enough down and than clicks lower of my sheet1 document space.
For example: row should be 200, ranorex scrolls to 197 and than click lower of my sheet1 space since there would be that cell. That place where lower click happens usually become my taskbar.
How can I solve this problem?