getText方法没有在文本中获得省略号?如何获取包含省略号的文本?

时间:2017-02-02 07:28:06

标签: ios appium

在我的iOS应用中,一个按钮元素包含文字" abc ... me"。enter image description here

但是当我使用getText()方法获取此元素的文本时,它会返回全文abchsshshme。但我期待缩短" abc ... me"。

在xml中显示全名abchsshshme,但在UI中显示abc ... me。

我可以在appium中执行此操作吗?

1 个答案:

答案 0 :(得分:0)

你试过这种方式吗?

WebElement uiElement1 = driver.findElementById("ElementId of abc...me Button");
String text = uiElement1.getText().replace("abchsshshme", "abc...me");
System.out.println(text);