Forum Discussion

Lokesh777's avatar
Lokesh777
Occasional Contributor
5 years ago
Solved

Retrieve authorization method in Auth Manager using Java Script assertion in Ready API

I need to retrieve the authorization method created in Auth Manager using Java Script Assertion in Ready API . Is there any solution ?
  • Hi Lokesh777,

     

    This JavaScript code retrieves the auth method set for your project in the current environment and posts its name to the log:

    var auth = context.testCase.testSuite.project.getAuthProfileHolder().getAuthProfile();
    log.info(auth);

    A video showing how it works for me is attached. 

     

    I hope this is what you were looking for.

     

5 Replies

    • Lokesh777's avatar
      Lokesh777
      Occasional Contributor

      Hi TanyaYatskovska ,
      We are using Java Script as "Script Language" for our Rest Project.
      In one of our tests, I need to retrieve the Authorization which has been set for the project currently.
      So ,I need to retrieve the "Profile name" from Auth Manager which has been set in a script assertion.

      I am expecting a possible soultion for this.

      Thanks in advance :) 

      • NBorovykh's avatar
        NBorovykh
        Moderator

        Hi Lokesh777,

         

        This JavaScript code retrieves the auth method set for your project in the current environment and posts its name to the log:

        var auth = context.testCase.testSuite.project.getAuthProfileHolder().getAuthProfile();
        log.info(auth);

        A video showing how it works for me is attached. 

         

        I hope this is what you were looking for.