1

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.

BiscuitBaker
  • 1,421
  • 3
  • 23
  • 37
user2787436
  • 359
  • 1
  • 3
  • 5

1 Answers1

0

A bug in Marathon is not allowing you to use columnIndex :(

Meanwhile, you can try using click as follows:

click('table_name', '{0,2}')

Note the absence of spaces in second parameter. Having spaces causes a problem (another bug).

Dakshinamurthy Karra
  • 5,353
  • 1
  • 17
  • 28