我需要找到使用selenium的页面中仅存在的视频数量的x-path。
<div>
<h4>
From
<a href="/publishers/957-buzzfeed">BuzzFeed </a>
• 2188 Videos
</h4>
</div>
先谢谢
答案 0 :(得分:0)
首先获取包含视频数量的文字如下: String headerText = driver.findElement(By.cssSelector(&#34; div&gt; h4&#34;))。getText();
然后,从headerText中替换所有非digiy charecters,如下所示:
int totalVideos = Integer.valueOf(headerText.replaceAll(&#34; \\ D +&#34;));