美文网首页
关于xpath的使用

关于xpath的使用

作者: 煮茶温酒曲终人散 | 来源:发表于2018-11-23 09:26 被阅读0次

How to use the Xpth

about '//' , '/' , and 'text()'

测试
 title = response.xpath('//div[@class="entry-header"]/h1/text()')

Look at the code under the sentence

//div[@class="entry-header"]/h1/text()

//div[class="entry-header"]
find the tag <div> which class is "entry-header" in the all text
/h1
find the tag <h1> in the <div class = "entry-header"></div>
/text()
get the text in the <h1></h1>

相关文章

网友评论

      本文标题:关于xpath的使用

      本文链接:https://www.haomeiwen.com/subject/glpdqqtx.html