如果我有一些像下面这样的 html
<div class=unique_id>
<h1 class="parseasinTitle">
<span> Game Title </span>
</h1>
Game Developer
</div>
有没有办法可以使用 xpath 来获取文本的“游戏开发者”部分?通过四处搜索,我尝试了:
//div[@class='unique_id' and not(self::h1/span)]
但这仍然给了我整个文本“游戏标题游戏开发者”。