2014-09-04 71 views
1

我想寫一個返回鏈接在下面的列表項的標題屬性的值的XPath表達式:XPath表達式在標題屬性

<li class="ProfileNav-item ProfileNav-item--followers"><a href="/profileurl/followers" data-nav="followers" title="796,433 Followers" class="ProfileNav-stat ProfileNav-stat--link u-borderUserColor u-textCenter js-tooltip js-openSignupDialog js-nonNavigable u-textUserColor" target=""><span class="ProfileNav-label">Followers</span> <span data-is-compact="true" class="ProfileNav-value">796K</span></a></li> 

所以我在尋找一個將返回「796,433關注者」的XPath表達式。

如果有人可以幫助我,它將不勝感激!非常感謝!

+0

什麼是搜索條件? – 2014-09-04 01:50:41

回答

0

檢查內部li類,並得到了a標籤內的@title

//li[contains(@class, "ProfileNav-item")]/a/@title