次の内容の html ページがあります。
<center>
This is Login page.
<br>
Please click below link to Login.
<br>
<a href="xxx">Login</a>
</center>
1 つの webdriver コマンドを使用して、上記のすべての静的テキストを確認するにはどうすればよいですか?
これらを試しましたが、どれも機能しません:(
driver.findElement(By.xpath("//*[contains(.,'This is Login page.<br>Please click below link to Login')]"))
driver.findElement(By.xpath("//*[contains(.,'This is Login page.\nPlease click below link to Login')]"))
誰でもそれを行う方法を知っていますか?