如何找到其中没有 <label> 标记的 <td> 的 xpath

How to find the xpath of a <td> that has no <label> tag inside of it

我有以下 HTML、

的片段
<tr valign="top">
    <td><label>Name</label></td>
    <td>FirstName LastName</td>
</tr>

我可以使用 //tr[@valign='top'] 找到 tr 的 xpath,使用 //tr[@valign='top']/td 找到两个 td 的 xpath。我想制作一个只适用于其中没有标签的 td 的 xpath。这可能吗?

我似乎已经使用 //tr[@valign='top']/td[text()] 解决了这个问题。