gpt4 book ai didi

android - Espresso - 验证 TextView 内容 Android

转载 作者:行者123 更新时间:2023-11-29 19:15:53 24 4
gpt4 key购买 nike

我正在尝试在 Android 上编写 Expresso 测试来验证 TextView 内容。当我从下面的资源中阅读文本时,它起作用了

    @Test
public void changeText_newActivity() {
onView(withId(R.id.mainContent)).check(matches(withText("Hello World!")));
}

以上是使用espresso的测试下面是它工作的android Activity 的代码

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/mainContent"
android:text="@string/hello_world"
/>

但是当我使用硬编码文本替换文本而不是引用资源时,测试失败并收到无法在 View 层次结构中找到 View 的错误

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/mainContent"
android:text="Hello world!"
/>

下面是我运行测试时的错误

android.support.test.espresso.NoMatchingViewException:在层次结构中找不到匹配的 View :与文本:是“Hello world!”

提前感谢您的帮助。

最佳答案

Code    "Hello world!"
^
Test "Hello World!"

看出区别了吗? Ww 不一样。

Espresso 理所当然地找不到这样的 View ,因为没有数学运算。

关于android - Espresso - 验证 TextView 内容 Android,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43535717/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com