I am using Jsoup to scrape a page for data but the data is not in a specific tag.
<strong>LABEL IS HERE</strong> DATA IS HERE
Using an XPath I am able to get a path //*[@id="center-text"]/text()[1]
but unfortunately chrome does not allow me to copy the CSS Path.
I can get a CSS Path for the <strong> LABEL IS HERE</strong>
but not for the other text. Is there a way to get this data using CSS Selector language?
Sample data
<div id="center-text">
<strong>ifno</strong> data
<strong>ifno</strong> data
<strong>Tifno</strong> data
<br>
<strong>ifno</strong> data
<strong>ifno</strong> data
<strong>ifno</strong> data
</div>