如何获取<br>标签后的文本

问题描述 投票:0回答:1
java selenium-webdriver
1个回答
0
投票

这里是使用 JavaScript 代码的示例,您可以尝试在 Selenium 中模拟步骤:

// get the container element first
const containerELe = document.querySelector("#output-container");
// get the br (second br in the container)
const brElement = containELe.querySelector('br:nth-of-type(2)');
// get the node after the br
const nameNode = brElement.nextSibling;
// get text content
const name = nameNode.textContent.trim();
© www.soinside.com 2019 - 2024. All rights reserved.