Unable To Code Below Scenario

Hi All,

Greetings Good Day!!!

I am unable code the below scenario. Can any one please help how to code.

From the below screen I have to click on the Firm Name where app status should be “policy issued "
Example:
Now as per the below screen the first row appstatus is “Endorsement Requested” so i should ignore that one .Now the second app status is “policy issued” so i have to click on that. Incase if the” policy issued" is in first row then i have to click on first firm name itself.

Thanks In Advance

Ramya

  1. Extract the data table then loop through it using for each row
  2. Your firm click should have been having row and column number in selector option…You have to get the selector from uiexplorer and then take the row num and col num attribute to the selector.
  3. Get index of row(varDatatableName.index(row)) where status is issued and pass that (index+1) to the row number

HI,
Thankyou for you solution, I have tried above steps and one thing i am not getting
unable to click on corresponding firm name .Can you please help please find the attached code
SampleSequence (2).zip (15.1 KB)

Thanks In advance

Hi @Pravin_Patil1 ,

Can you please help.

Thanks,
Ramya

@yandrathiramya

Add one assign for the dynamic selector and then pass that selector to click activity…

You might need to change (ExtractDataTable.Rows.IndexOf(row)+1) this portion with plus 0 or 2 or 3 based on row column element structure of your table

Please refer to the below screenshot.

Hi @Pravin_Patil1 ,

Thankyou so much for helping me .I have tried what ever you have send but i am getting an error like selector invalid. Please find the below snaps for reference.



Thanks,
Ramya

You have removed '(apostrophe) also from the selector before " and after " there is ’

Before '" + (ExtractDataTable.Rows.IndexOf(row)+1).ToString+"

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.