- Регистрация
- 26.12.2015
- Сообщения
- 14
- Благодарностей
- 1
- Баллы
- 3
Hey I am stuck at a point where I want to scrap a nested lists on webpage . It is like.
<ul>
<li>Things
<ul>
<li>Fruits<ul>
<li>Apple</li>
<li>Mango</li>
<li>Banana</li>
</ul></li>
<li>Vegetables<ul>
<li>brinjal</li>
<li>carrot</li>
<li>potato</li>
</ul></li>
</ul> </li>
<li>Other Things</li>
<li>Even Other Things</li>
<li>More other things</li>
</ul>
It appears something like..
<ul>
<li>Things
<ul>
<li>Fruits<ul>
<li>Apple</li>
<li>Mango</li>
<li>Banana</li>
</ul></li>
<li>Vegetables<ul>
<li>brinjal</li>
<li>carrot</li>
<li>potato</li>
</ul></li>
</ul> </li>
<li>Other Things</li>
<li>Even Other Things</li>
<li>More other things</li>
</ul>
It appears something like..
- Things
- Fruits
- Apple
- Mango
- Banana
- Vegetables
- brinjal
- carrot
- potato
- Fruits
- Other Things
- Even Other Things
- More other things