How to create Test cases and run randomly based on requirement in UiPath

Can you help me, how to create test cases in UIPath and Execute from Framework.
Example:I have 3 test cases(3 Different sequences)
1)Login to Gmail
2)Verifying the Inbox
3)Send New Email

Expected Framework:
I can run Test cases 1 and 3
or
I can run Test cases 1 and 2

Thank you in Advance.

Yah we can do this with REFRAMEWORK
—in Init state initialise all the application we are going to use and also kill all the application going to be used
—then in Get Transaction use GET OUTLOOK MAIL activity and get all the mail list
—in Process state we can process them one by and send the mail we want with SEND OUTLOOK MAIL activity
—then at END State we can close all the application
Meanwhile any business exception or system excpetion can be handled with exception handling and if needed use set transaction status (only if queues is used from orchestrator)

Cheers @RajeshT

1 Like

Hi @Palaniyappan ,

Thank you for the inputs,I will come with structure based on your inputs!
As other frameworks will also provide output like No.of Test cases passed and Failed,can we also capture this type of report from Reframework?

Yah with screenshot evidence or making a note of them in excel in Process state can help us on tha
Cheers @RajeshT

1 Like

Hi @Palaniyappan ,

I just want to send an email using outlook and email ids i have mentioned in config file.
I have tried with Reframework ,but seems am missing something ,could you please check and revert.
InitAllSettings.xaml (15.7 KB)
GetTransactionData.xaml (6.7 KB)
Main.xaml (49.8 KB)
Config.xlsx (11.9 KB)

Then how do we given the testdata from data driven excel using Test suite @Palaniyappan

In my usecase i’m having 4 sequence and i need to run sequentially from login
can you please help me…