我正在尝试验证动态产生的textview文本的Espresso UI测试用例。
我正在使用Espresso UI为Android Studio中的textview编写此测试用例
<string name="onstartbt_7_0_streetNames1and2_csm">%1$s and %2$s</string>
.check(
matches(
withText(
anyOf(
`is`("First street name and second street name"),
`is`("%1 and %2 ")
)
)
)
)
在检查时,这里%1 $ s街道名称1和%2 $ s街道名称2的%1 $ s必须动态更新。