我有以下 HTML
<div class="t-beaneditor-row">
<label>Login ID</label>
SeleniumReset
</div>
我想使用 WebDriver Java 从 HTML 中检索字符串“SeleniumReset”。我试过了
driver.findElement(By.xpath("//div")).getText()
但它给了我“登录 ID SeleniumReset”。如何仅检索“SeleniumReset”?