get_elements_by_tag_name_ns method
get_elements_by_tag_name_ns
Returns HTMLCollection object containing all Element with a given local name and namespace URI string in document order.
Returns
A live HTMLCollection of found elements.
def get_elements_by_tag_name_ns(self, namespace_uri, local_name):
...
| Parameter | Type | Description |
|---|---|---|
| namespace_uri | str | The namespace URI string representation. |
| local_name | str | String representation of local name. |
Remarks
Refer to official spec.
See Also
- module
aspose.html - class
Element - class
HTMLCollection - class
HTMLModElement