Forum Discussion
Philip_Baird
11 years agoCommunity Expert
Hi rajesh, remove the () after text(), i.e.
Application = xmlDoc.GetElementsByTagName(tag).item(0).text()
should be
Application = xmlDoc.getElementsByTagName(tag).item(0).text
As per the debugger, text is a Property, not a Method.
Regards,
Phil Baird
Application = xmlDoc.GetElementsByTagName(tag).item(0).text()
should be
Application = xmlDoc.getElementsByTagName(tag).item(0).text
As per the debugger, text is a Property, not a Method.
Regards,
Phil Baird