当我有多个子标签时,xpath从div获取Text()

时间:2018-04-26 03:21:43

标签: xpath text

我有tag如下:



<div class="popupContent">
  <div class="gwt-HTML">
    <h1 class="v-Notification-caption">Session Expired</h1>
    <p class="v-Notification-description">
      Take note of any unsaved data, and <u>click here</u> or press ESC key to continue.
    </p>
  </div>
</div>
&#13;
&#13;
&#13;

需要使用简单的xpath阅读全文。

当我尝试使用以下内容时:

//*[@class='v-Notification-description'][text()]

我只是

  

&#34;记下所有未保存的数据,&#34;

。如何检索全文。

1 个答案:

答案 0 :(得分:1)

使用string()函数生成所选text()及其后代中所有p个节点的计算字符串值,在本例中为u元件。

string(//*[@class='v-Notification-description'])