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?!!
I never used ODT feature. But the alternative given here is what I have used to emulate the Page Object Model pattern in both JScript and JavaScript (using the protoype option). Its working absolutely fine as we expect.