I have agreement ids in an excel sheet in one column and i am trying to download specific details from an application. The workflow i have created is picking up the first agreement id from the excel file and downloading the specific details, however when the tool is picking up the second agreement id, the workflow pauses as it is not picking the second value.
The field is named as Free Text Search. Once the agreement id(eg: 123456789) is pasted in this field, it would throw a suggestion box as Agreement: 123456789. I need to select the agreement id from the suggestion box and then click on Search button.
Here is where the issue is:
1 - The first agreement id (123456789) is picked from excel sheet and pasted in Free Text Search Field. suggestion box as Agreement: 123456789 and picks this from suggestion box and then click on search button which is as expected.
2 - When the second agreement id (001245687) is picked from excel sheet pasted in Free Text Search Field. suggestion box as Agreement: 001245687, however this element is not being picked instead the workflow freezes. It seems like the click tool on agreement id (123456789) is being set as constant.
Seems like an issue with the selector. Could you please share the selector properties used for the Free Text Search
Also once you enter some value in the text field - Are you going back to the initial state or you are trying to continue with the search field where the value is already entered?
Thank you for the quick response. I am continuing from the Search field. The workflow is picking up the second agreement id and searching, however there is delay in picking this up as i closely monitored it. I also have another concern where the search results will have multiple results and i want to select only the latest version. The latest version will be at the bottom of the search results.
Below is a snip of the search results. And i want to select only version 4 which is the latest one.
If you get multiple and need last then use find children on the pop up you get which would get each selection as separate element now outputofthat.Last will give the selector of last element which can be passed to click activity as input element to click on the last one always