Verifying Successful Record Creation in UiPath with Existing Records Page

Hello everyone,

I’m currently working on a project where I’m using UiPath to automate the creation of records on a web application. I’ve successfully managed to automate the input of data and the submission of the form. Once the record is created, it takes me to a page displaying all the existing records.

I’m now looking for the best approach to confirm if the record was created successfully (Without manually confirming). Could anyone provide some guidance or suggest an efficient way to verify this using UiPath, considering the page with all existing records?

I’d greatly appreciate any insights or suggestions!

Thank you in advance!

1 Like

I think with this page I can confirm
Use TABLE EXTRACTION METHOD to get all the records from that final page and get thaa a datatable
Now dt.Rows.Count if matches your actual data count then it’s fine if not u need validate

Or

Sometimes web applications will display a success message after a record is created successfully. You can use the Get Text activity to get the text of the page and then search for the success message. If the success message is present, then you can be sure that the record was created successfully.

Cheers @Ivan_Potgieter

1 Like

To confirm if a record was created successfully in a web application after automating the data input and form submission using UiPath, you can follow these steps:

1.After submitting the form, you mentioned that you are directed to a page displaying all the existing records. Use the “Data Scraping” or “Extract Structured Data” activity in UiPath to scrape the data from this page.This way you can extarct the data

2.Compare the data you scraped with the data you given to input when creating the record. You can use string comparisons or other validation methods to check if the record details match your input.

3.Implement logging in your UiPath workflow to record the results of the comparison. If the record creation is successful, log a message confirming it. If not, log an error message with details.

hope it will help for you

@Ivan_Potgieter

1 Like

Hope it’s clarified
@Ivan_Potgieter

If yes

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