is_same_node method

is_same_node

Method is a legacy alias the for the strict equality operator. That is, it tests whether two nodes are the same (in other words, whether they reference the same object).

Returns

A boolean value that is if both nodes are strictly equal, if not.

def is_same_node(self, other_node):
    ...
ParameterTypeDescription
other_nodeaspose.html.dom.NodeThe Node to test against.

See Also