Given a child element e, is there a good (or pythonic) way to find all children with tag div and a class cls? I've tried e.find_element_by_xpath('div[starts-with(@class, "cls")]') but that doesn't seem to search within e. It seems to return the first match in the tree.