adi.mehare
(Aditya Mehare)
2
By using below expression in assign activity you can get a table row
if you know column name
targetRow = dataTable.AsEnumerable().FirstOrDefault(Function(row) row("<ColumnName>").ToString().Trim() = targetText)
if you don’t know column name
targetRow = dataTable.AsEnumerable().FirstOrDefault(Function(row) row.ItemArray.Any(Function(cell) cell.ToString() = targetText))
For CV Click using variable check below links