The grid has about 10.000 rows and 20 columns and is bound to an Ingfragistics UltraDataSource that provides data on demand. The grid does not cache cell data.
The Recorder generates:
- Code: Select all
repo.Form.TableTable.RowBand_0_row_8.MoveTo("8;10");
Mouse.ButtonDown(MouseButtons.Left);
repo.Form.TableTable.RowBand_0_row_8.MoveTo("11;52");
Mouse.ButtonUp(MouseButtons.Left);
With:
- Code: Select all
RowBand_0_row_8 = ... row[@accessiblename='Band 0 row 8']
The problem is that the test takes so long that it is unusable. It seems that Ranorex is loading all 10.000 table rows and cells when accessing "RowBand_0_row_8". Could this be?
Is there a faster workaround? How can I select a row or a cell without Ranorex loading all of the table data?
BTW, same happens when I try to track a table row with the Spy tool. It takes forever and memory usage increases a lot.
Peter