Extarcting tha each page details clicking on view after click on view each page go to next page how plese give expalinimation


above this image .clicking on view ofter opening the agent details, extracting to details after open to image page click on view , each page 10 agent deatails are there clicking view , how to go to next page , i acn extracting each page deatails ,and number pages details. so give explanimation ’ present i am facing this isue

@Venky_Mama

Follow the steps

  1. Do while activity with condition as bln_found a boolean variable
  2. Inside it use a for each ui element activity and indicate the view button …make sure no details about the page are present so that it works for each oage
  3. Inside for each ui element use currentelement and use click to perform click on view then use get attribute etc to retrive the data and then come bavk to actual page
  4. Outside for each and inside do while use a check app state and check if next is available or not and set bln_found variable in the check app state output variable

So the loop would run till next button is enabled and will click on each view button on each page

Cheers