-5

Please help me to find the solution to get the text inside 'ul' tag.

I want to get the information which is separated with commas like: 'Contains Enzymatically Active B-Vitamins, Dietary Supplement, Non-GMO LE Certified'

website link: https://ca.iherb.com/pr/Life-Extension-BioActive-Complete-B-Complex-60-Vegetarian-Capsules/67051

picture: enter image description here

This is the HTML code:

<ul>
  <li>Contains Enzymatically Active B-Vitamins
  </li>
  <li>Dietary Supplement
  </li>
  <li>Non-GMO LE Certified
  </li>
</ul>
Andy Pham
  • 19
  • 9
  • get text from all `li` and use `",".join(list_of_li)` – furas Dec 28 '20 at 05:44
  • 1
    this will help [How to extract all
  • elements under
      ](https://stackoverflow.com/questions/56421690/how-to-extract-all-li-elements-under-ul)
  • – deadshot Dec 28 '20 at 05:45