get_elements_by_class_name method

get_elements_by_class_name

Returns a live NodeList object containing all the elements in the document that have all the classes specified in argument. http://www.w3.org/TR/dom/

Returns

The Element.

def get_elements_by_class_name(self, class_names):
    ...
ParameterTypeDescription
class_namesstrThe string string that contains an unordered set of unique space-separated tokens representing classes (class names)

See Also