xpath to get all the childrens text
xpath
Solution
This will retrieve all text elements with a parent `ul` element.
//ul/descendant::*/text()
Problem
Is there any way to get all the childrens node values within the ul tag. Input: ``` <ul> <li class="type">Industry</li> <li><a href="/store/Browse/?N=355+361+4294855087">Automotive</a></li> <li><a href="/store/Browse/?N=355+361+4294855065">Parts </a></li> <li>Tires</li> </ul> ``` Output: Industry, Automotive, Parts, Tires.