将XPath转换为CSS选择器

时间:2015-09-19 20:36:00

标签: java xpath css-selectors jsoup

我正在使用Jsoup来抓取页面以获取数据,但数据不在特定标记中。

<strong>LABEL IS HERE</strong> DATA IS HERE

使用XPath我能够获得路径//*[@id="center-text"]/text()[1]但不幸的是chrome不允许我复制CSS路径。

我可以获得<strong> LABEL IS HERE</strong>的CSS路径,但不能获取其他文本的CSS路径。有没有办法使用CSS Selector语言获取此数据?

示例数据

<div id="center-text"> 
      <strong>ifno</strong> data&nbsp;&nbsp;&nbsp;
      <strong>ifno</strong> data&nbsp;&nbsp;&nbsp;
      <strong>Tifno</strong> data
      <br> 
      <strong>ifno</strong> data&nbsp;&nbsp;&nbsp;
      <strong>ifno</strong> data&nbsp;&nbsp;&nbsp;
      <strong>ifno</strong> data 
</div>

0 个答案:

没有答案