gpt4 book ai didi

android - 在 Espresso 中访问 RadioButton 并选择它

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:54:24 27 4
gpt4 key购买 nike

我正在使用 Espresso 测试 Android 应用程序。我在尝试找到一种方法来访问和选择当前 Activity 的 RadioButton(属于 RadioGroup)时遇到了麻烦。有人有什么建议吗?

最佳答案

给定以下布局:

<RadioGroup
android:id="@+id/radioGroup"
android:layout_height="wrap_content"
android:layout_width="wrap_content">

<RadioButton
android:id="@+id/firstRadioButton"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="@string/first_radio_button" />

<RadioButton
android:id="@+id/secondRadioButton"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="@string/second_radio_button" />

<RadioButton
android:id="@+id/thirdRadioButton"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="@string/third_radio_button" />

</RadioGroup>

使用以下内容编写一个新的测试方法:

onView(withId(R.id.firstRadioButton))
.perform(click());

onView(withId(R.id.firstRadioButton))
.check(matches(isChecked()));

onView(withId(R.id.secondRadioButton))
.check(matches(not(isChecked())));

onView(withId(R.id.thirdRadioButton))
.check(matches(not(isChecked())));

瞧!

关于android - 在 Espresso 中访问 RadioButton 并选择它,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29176585/

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