印地文文本验证按钮 + selenium 中的哪个

Hindi text verify which is inside button + selenium

我是 selenium 的新手,我想验证按钮内的印地语文本。我可以使用 gettext() 方法获取印地语文本。但我不知道如何验证该文本。谁能帮我解决这个问题。

这应该有效

String hindiString = new String("अग्रसर रहें");
Boolean textIsEqual = hindiString.contentEquals(textFromSeleniumWebElement); // this should verify.
        
//You may also verify the same by checking the byteArray content of both the elements
byte[] hindiBytes = hindiString.getBytes(StandardCharsets.UTF_8);