solo.searchText不识别“$”

时间:2013-08-19 13:12:32

标签: android search robotium

我在我的机器人测试用例中使用了solo.searchText函数。我将文本作为“$ testdata”传递给搜索。但即使文本在屏幕上,它也不会检测到文本。在使用solo.searchText()之前,我们需要处理特殊的字符吗?请帮帮我

1 个答案:

答案 0 :(得分:3)

使用Pattern.quote()提及here来搜索特殊字符,否则这些字符将被解释为正则表达式。

solo.searchText(Pattern.quote(stringWithSpecialCharacters))