I am needing to input values from an excel sheet into certain UI elements in a web-based table.
I am using a for each excel row activity, and per the attached xaml file, you can see what I am attempting. Dynamic_UI.xaml (57.2 KB)
I have the copy and pasting from the excel sheet into the “product ID, Description, and Unit price” UI elements figured out. The part that is puzzling me is the following:
I couldn’t check the selectors because I couldn’t reach the page.
My advice is to dynamically the selectors you use for the data entry activity.
Since you will be entering transactions for each row here, look for a row count selector that you can increase in the selectors.
Here if you want to add new rows by clickin gon + button and need to add data to the newly created rows, then you need to identify the proper selector for the each cell.
What you can do is use Uiexplorer and inspect on the cell, there you should be able to find some attrbiute like idx or rownum, which is dynamic and incrementing for each row.
That attribute value you need to replace with a dynamic counter variable and you can type.
@Sc100
U should make Selectors dynamic.
you can increase the rows by passing a variable counter in selector, then you can increment the counter every time you add a row until some condition is met.