Element.removeAttribute(name) Remove an attribute by name. If there is no matching attribute, a NotFoundErr is raised.
Element.hasAttributeNS(namespaceURI, localName) Returns true if the element has an attribute named by namespaceURI and localName.
Element.hasAttribute(name) Returns true if the element has an attribute named by name.
Element.getElementsByTagNameNS(namespaceURI, localName) Same as equivalent method in the Document class.
Element.getElementsByTagName(tagName) Same as equivalent method in the Document class.
Element.getAttributeNS(namespaceURI, localName) Return the value of the attribute named by namespaceURI and localName as a string. If no such attribute exists, an empty string is returned, as if the attribute had no value.
Element.getAttributeNodeNS(namespaceURI, localName) Return an attribute value as a node, given a namespaceURI and localName.
Element.getAttributeNode(attrname) Return the Attr node for the attribute named by attrname.
Element.getAttribute(name) Return the value of the attribute named by name as a string. If no such attribute exists, an empty string is returned, as if the attribute had no value.
exception xml.dom.DomstringSizeErr Raised when a specified range of text does not fit into a string. This is not known to be used in the Python DOM implementations, but may be received from DOM implementations not written in Python.
Page 42 of 663