I am trying to automate my java application using marathon, currently stuck in a point to select cell from a table, but column does not have index name. Actually it works with the command which has column index name like below:
select('table_name', 'rows:[0],columns:[column_index_name]')
I have tried below command:
select('table_name','rows:[0],columns:[2]')
and
select('table_name', [{ 'row': 0, 'columnIndex': 2 }])
None of this is working, can anybody please help me?
I am using python as scripting language.