Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我的机器人测试用例中使用了 solo.searchText 函数。我将文本作为“$ testdata”传递以进行搜索。但即使文本在屏幕上,它也不会检测到文本。在使用 solo.searchText() 之前我们需要处理特殊字符吗?请帮我
使用这里Pattern.quote()提到的搜索将被解释为正则表达式的特殊字符。
Pattern.quote()
solo.searchText(Pattern.quote(stringWithSpecialCharacters))