Earlier We get play button to trigger test set but now we are not getting that any resolution do we have?
Welcome to the community
can you please show a screenshot
also if you right click you would get option to run
cheers
More context about the issue would be helpful here to understand which play button you are talking about.
Hi,
It may be the following removal of the feature.
https://docs.uipath.com/overview/other/latest/overview/deprecation-timeline#test-manager
Regards,
Is there any way we can trigger older published test set
Can you please help me to guide the steps to trigger with API?
Hi,
The following topic may help you.
Regards,
Have you tried the Test Manager?
Yes, but still not able to execute
yes
I can get this.
Getting issue in CLI and also with test manager trigger
Can you show error with test manager trigger
also with CLI what are you using?
Did you assign testing licenses?
cheers
Hi @Rohit_Kumar_Gupta ,
As all the Test Suite functionality moved to Test Manager, you need to run the Test set from Test Manager manually or you can create schedule. You can also use Test manager API to trigger the test set.
Follow the steps to run the test set in test manager:
- Get PAT ( Personal Access Token ) or client credential
- Get Project ID and Test Set ID using Swagger
- Get OAuth Token
Make a POST request to: https://cloud.uipath.com/identity_/connect/token
With the Body (x-www-form-urlencoded):
client_id:
client_secret:
grant_type: client_credentials
- With PAT, you can directly call the 2nd API.
The response will return an access_token.
- Execute the Test Set
Use the Bearer token from step 1 and make a POST request to:
POST https://cloud.uipath.com/{organization}/{tenant}/testmanager_/api/v2/{ProjectID}/testsets/{TestSetID}/startexecute?executionType=automated
This will start the execution of the Test Set.
Thanks





