I am using the Sikuli IDE to test an application that returns data in a table. The table is read only and I cannot copy and paste the contents. I can select a row when using the application being built but that's all. I am currently using the exist() function to verify the data. I am getting good results when I select several rows of table data using Sikuli, and then compare the results.
I have found that using the exists() function can allow small errors to get through and am looking for a more accurate way to verify my search results.
My current code is:
If exists(BlockOfTableData.png):
return '1'
else:
return '0'
Thanks in advance for any help. The help I got on my previous post was excellent.
Some ideas you can try:
text()
feature to read the data off the screen