In data table web automation how to select perticular item

Hi everyone.,

I had attend an interview unfortunately i couldnt clear.
actually they had given a task similar to this.

i was able to login and enter to bill page but couldnt go further.

i need to select a particular bill no. and then click view bill and download it.

can anyone help in this so that i can prepare for the next one.

@naveen.dsn

  1. use Data Scraping activity to scrape the data and store result in dataTable.
  2. Then use ForEach Row activity to iterate that DataTable.
  3. Find the index of row using dataTableName.rows.indexof(row)
  4. And also click two view bills and see selector once. Based on that make dynamic selector. You have to find the variable attribute like ID etc… I guess this attribute will change for every line.
  5. We have to make some relation between Bill Number and View Bill.
1 Like