标签: android search robotium
我在我的机器人测试用例中使用了solo.searchText函数。我将文本作为“$ testdata”传递给搜索。但即使文本在屏幕上,它也不会检测到文本。在使用solo.searchText()之前,我们需要处理特殊的字符吗?请帮帮我
答案 0 :(得分:3)
使用Pattern.quote()提及here来搜索特殊字符,否则这些字符将被解释为正则表达式。
Pattern.quote()
solo.searchText(Pattern.quote(stringWithSpecialCharacters))