Earlier We get play button to trigger test set but now we are not getting that any resolution do we have?

Earlier We get play button to trigger test set but now we are not getting that any resolution do we have?

@Rohit_Kumar_Gupta

Welcome to the community

can you please show a screenshot

also if you right click you would get option to run

cheers

@Rohit_Kumar_Gupta

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

Hi,

According to notification, it may be able to trigger test via API.

Regards,

Can you please help me to guide the steps to trigger with API?

Hi,

The following topic may help you.

Regards,

@Rohit_Kumar_Gupta

If in Orch then you need to go to test manager

cheers

I am getting error with API. please help with new changes and how we can trigger test sets

Have you tried the Test Manager?

Yes, but still not able to execute

@Rohit_Kumar_Gupta

Are you able to go this test manager apge?

cheers

yes
I can get this.
Getting issue in CLI and also with test manager trigger

@Rohit_Kumar_Gupta

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
  1. 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.

  1. 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