Reframe work along with test cloud

hi ,
i have a requirement where i need to test data from db source . how can i build that in reframe work and integrate it with test manager ? give me step by step detailed steps and also if any youtube video available kindly send me link

Hi @poojaskyrathore,

You need to check the Tests folder in the REFramework project, especially ProcessTestCase.xaml . In this workflow, you should configure your verification/validation conditions and mark the test case as publishable.

When you execute this test case, the REFramework process will retrieve the data from the database and process it, while the test case workflow will handle the validation/assertion part. This approach helps separate the business process execution from the testing and verification logic in UiPath Test Automation.

Thanks

do you have any link of demo project in youtube performing this ?

Hi @poojaskyrathore,

You can check this video: https://www.youtube.com/watch?v=YWeQbSYEOSM

You need to configure you validation in MainTestCase.xaml test case.

So, here basically you are testing the Framework and your process.

Thanks

are you UiPath tester ?

1: Create a Test Automation Project

  • Open UiPath Studio
  • Select Test Automation Project
  • Enable:
    • Test Explorer panel
    • Test Framework features
      2: Create DB Connection
      3: Execute SQL Query
      4: Validate Data (Core Logic)
      5: Close DB Connection
  1. Reusable Framework Design in UiPath
  2. Data-Driven DB Testing
  3. Integration with UiPath Test Manager

Hi @poojaskyrathore,

I’ve hands-on experience in both process automation and test automation.

Thanks

i would be requiring your help in one of the project in my org which will start in 2 weeks
can you help ? and if in any way i can contact you regarding this

Hi @poojaskyrathore,

You can use message option of the UiPath forum. Need to click on Profile then Message.

Thanks

Hi @poojaskyrathore

To test DB data using REFramework and integrate with Test Manager, you can create a Test Automation project and use REFramework where in the Init state you set up the DB connection, in Get Transaction Data you read test inputs, and in Process state you execute queries and compare expected vs actual data using validations. Then enable Test Manager, connect it in Studio, publish your project, and link your automation as a test case to run and track results. In short, REFramework handles execution and validation, while Test Manager is used for managing and reporting the tests.