getting XML DOM tagName fails
MicrosoftXML DOM Propertiespage shows "tagName" as a property. But when I try to use it with # Python Log.Message("Node tag: " + mynode.tagName) I get "AttributeError: The object does not support this property or method" I can use "nodeName", "nodeValue", "xml", "text", or various other properties with no problem. Indeed, the "xml" property shows the tag name and the value. But how do I get just the tagName? Why doesn't it work, or why is it not supported?Solved1.2KViews0likes3Comments