如何在上面的类中出现某些单词后使用xpath获取href

时间:2015-11-22 14:58:01

标签: xpath

我想抓住:a)Facebook页面网址b)此处的Facebook页面名称:

<div class="desc">Example text</div>
                <a href="https://www.facebook.com/example" target="_blank" class="blank show-tooltip" data-tooltip="this is text">Example Facebook page Name</a>

无论如何XPATH可以检查class='desc'然后返回我需要的东西吗?

1 个答案:

答案 0 :(得分:0)

首先,您需要使用有效的xml:

<?xml version="1.0" encoding="utf-8"?>
<form>
 <div class="desc">Example text</div>
 <a href="https://www.facebook.com/example" target="_blank" class="blank show-tooltip" data-tooltip="this is text">Example Facebook page Name</a>
</form>

鉴于此,这将起作用:

//div[@class = "desc"]/following-sibling::a/@href