Hi,
It seems that the get-cell command doesn`t work very well in Virtual tables with lazy load. It is easy to check it if this kind of table contains thousands of rows. If I try to get a given cell then I can see how it iterates all rows several times (maybe it depends of the table size). It happens only in virtual tables.
I tried an alternative way to do the same thing. It seems work but it takes few seconds to finish.
1-The problematic way to get cells in virtual tables:
with [get-editor "MyEditor"| get-section Table | get-table] {
get-cell 0 1 | click
}
2-An alternative that works but doesn't return the result immediately.
with [get-editor "MyEditor" | get-section Table | get-table] {
get-item $columnValue -column $columnName -index $index
}
- RCPTT version: 2.0.1
- AUT under Eclipse Mars 4.5.1
I would like to know if someone have an idea about this problem before submitting it as a bug.
Thank you.
[Updated on: Mon, 04 January 2016 06:37]
Report message to a moderator