Я пытаюсь получить текст из модели, используя xpath, но в итоге я не получаю текст, но могу получить имя тега.
HTML:
<div class="modal fade custom-modal" id="loginfailure-modal" role="dialog">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-body">
<p id="custom-modal-text">We could not find that<br> account. Incorrect email and /<br> or password</p>
<button id="custom-modal-btntext" type="button" class="button green-button custom-modal-button" data-dismiss="modal">Please try again</button>
</div>
</div>
</div>
</div>
Пробная версия кода:
String txt = driver.findElement(By.xpath("//p[@id='custom-modal-text']")).getText();
Мне нужен текст внутри тега <p>
, но я не получаю его, но я могу получить имя тега, используя функцию get tag name.