I have 10 columns in a screen.i have to match each and every element with given field.
If matched then then on 1st element
Example:
Action Name Street City State Country
Edit Sachin Dk Mumbai Maharashtra India
Now If Name,Street,city,State,Country matches then i will click on Edit Button.
I am using Find Children to get each element,but not match the fields and click on Edit.
Can you say more about this? How are you comparing?
element 1
if( aaname = “xyz”)
matched
Additionally I think you could try data scraping and write a datatable select using the condition specified. Once match found click on respective Edit button in the screen (probably manipulate the selector of Click activity)
Can you share your xaml or paste the screenshot. I want to see which attribute is holding your field values and if you are comparing the correct field. Usually its aaname and you can check in the UiExplorer.
Yaa its aaname that i am using in Get Attribute.
I Have to match the aaname of all the field.
i am able to match first element and rest three element are not matched.