I am facing a situation where I have to choose a specific row in a datatable that displays rows in groups of 10, based on the value of its column. Previously, I successfully used the following code to select the first row.
myGroupTable.row(':eq(0)', { page: 'current' }).select();
However, my attempts with the following code were unsuccessful:
myGroupTable.row('td:eq(0).contains(' + value + ')').select();
Can anyone provide assistance on this issue?