Hi,
I am trying to create an extension for smartgwt using QTP extensibility and autotest.js (mentioned in one of the posts). After getting things to go as far as picking up the right locator, it blows up while trying to retrieve the element.
This is the locator returned for showcase nav tree ("Miller Columns") node
And here is where it blows up "baseComponent.getElementFromSplitLocator(locatorArray)" in getElement
This is the actual code in isc core which blows up:
"_81.removeAt(0);"
Has anyone got any ideas? As always any help is greatly appreciated.
Thanks,
I am trying to create an extension for smartgwt using QTP extensibility and autotest.js (mentioned in one of the posts). After getting things to go as far as picking up the right locator, it blows up while trying to retrieve the element.
This is the locator returned for showcase nav tree ("Miller Columns") node
Code:
"//TreeGrid[ID="isc_OID_13"]/body/row4/col0"
Code:
return baseComponent ? baseComponent.getElementFromSplitLocator(locatorArray) : null;
"_81.removeAt(0);"
Code:
return isc.emptyString},getElementFromSplitLocator:function(_81){var _8=this.getChildFromLocatorSubstring(_81[0]);if(_8){_81.removeAt(0);
Thanks,
Comment