In Selenium with Python is it possible to get all the children of a WebElement as a list?
Another veneration of find_elements_by_xpath(".//*") is:
find_elements_by_xpath(".//*")
from selenium.webdriver.common.by import By find_elements(By.XPATH, ".//*")