Forum Discussion

Vallalarasu_P's avatar
Vallalarasu_P
Frequent Contributor
7 years ago
Solved

ODT - Alternatives & Javascript Capabilities ?

Hi All,

 

ODT (https://support.smartbear.com/testcomplete/docs/testing-with/deprecated/odt/index.html) is going to be a depecated feature. So that an alternative is shared 

 

https://support.smartbear.com/testcomplete/docs/testing-with/deprecated/odt/index.html#alternatives

 

/ Define a custom class
function customClass() 
{

  // Define a class property
  var classProperty;
}

// Define a class routine
customClass.prototype.classRoutine = function()
{
  // ...
}

function Test() 
{
  var obj;
  
  // Create an instance of the class
  obj = new customClass();
  
  // Set the class property
  obj.classProperty = 41;
  
  // Call the class routine
  obj.classRoutine();
}

 

This alternative works for JavaScript too?!!

 

tristaanogre shankar_r

  • Hey dreddyc 

     

    Dunno whether this will help, but I asked a similar question a while back as i was tasked with getting ReadyAPI! plugged into a CI/CD/CT jenkins pipeline for Azure.  The link is here

     

    Just a bit of info - the unflattened composite file rather than using the flat single project.xml is to handle multiple users accessing the same content with identical checkouts.  Because youre splitting the project.xml into multiple individual components, this enables different users to change the content without having horrific conflicts when you merge back to master.

     

    what components are you using in your CI/CD pipeline,  Are you using the Azure plugin?  what build agent are you using?, etc., etc.  These sorts of questions alter how you setup and execute your tests with the above.

     

    I never actually completed setting my my Azure CI/CD/CT pipeline for readyAPI! cos I got pulled onto other stuff, so the above is all I have I'm afraid - perhaps some of the other lads/ladies can give you a better answer.

     

    cheers,

     

    rich

     

     

     

     

    ta

     

    rich

3 Replies