Hi Guys, good day!
Ive got some problem with regards to selecting a specific value over a website wherein that said value is found on the next page and not on page 1. How am I able to do so in UiPath?
I wanted to check about a record im looking for. This record is usually found on the 2nd page of the web im using. And that reocrd id usually starts with “F” (example on the image is F0014138).
My problem is how could I check on the 1st page that "im looking for an ID that contains the “F” " … and if not found, “click” the next page and when found on the 2nd page (assuming it has that record), then I can select that record
The image above shows the Data that I extracted from the web table and Saved it to Excel.
Question:
Now How do I make it that only a specific value (highlighted on the image above) will be written or saved in Excel?
(From row In dtCustomers.AsEnumerable()
Where row("FCodes").ToString.StartsWith("X") Or row("FCodes").ToString.StartsWith("Y")
Select row).CopyToDataTable()
Ived uploaded my xaml file with similar scenario wherein I only wanted to get the values on the “Country” column. These are “UK” and “Italy”
I used this linq to try:
ExtractDataTable.AsEnumerable().Where(Function(row) row(“Country”).ToString.StartsWith(“I”) Or row(“Country”).ToString.StartsWith(“U”)).CopyToDataTable()