- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我从 Espresso 开始,我有一个自定义的 Toast
,当用户输入错误时我会显示它(我知道我可以使用 EditText.setError(),但那只是怎么样)。
这是 Toast 的代码
private static void showToast(Context context, String message, boolean isError) {
if (context != null) {
LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
TextView toastView = (TextView) inflater.inflate(R.layout.error_toast_layout, null);
if (!isError) {
toastView.setBackgroundColor(context.getResources().getColor(R.color.alert_positive));
}
toastView.setText(message);
Toast errorToast = new Toast(context);
errorToast.setGravity(Gravity.TOP, 0, 0);
errorToast.setDuration(Toast.LENGTH_SHORT);
errorToast.setView(toastView);
errorToast.show();
}
}
我正在编写一个小的 UI 测试,它将断言当用户输入错误的输入时会显示正确的 Toast
这是测试
@RunWith(AndroidJUnit4.class)
@LargeTest
public class ForgotPasswordTest extends BaseEspressoTest<ForgotPasswordActivity> {
@Test
public void testEmailNotEntered() {
onView(withId(R.id.email_et)).perform(typeText("w"), closeSoftKeyboard());
onView(withId(R.id.btn_submit)).perform(click());
onView(withText(R.string.incorrect_email_dialog)).inRoot(withDecorView(not(mActivityRule.getActivity().getWindow().getDecorView()))).check(matches(isDisplayed()));
}
}
如果我用我的自定义 Toast 替换常规 Toast,这会很好用,但当我用我的 Toast 尝试时会失败。我可以看到在测试期间正在显示 Toast。
这是错误:
android.support.test.espresso.NoMatchingRootException: Matcher 'withdecor view not<com.android.internal.policy.impl.PhoneWindow$DecorView{3852d97V.ED.... R....... 0,0-1080,1920}>' did not match any of the followingroots:[Root{application-window-token=android.view.ViewRootImpl$W@2d629b84,window-token=android.view.ViewRootImpl$W@2d629b84,has-window-focus=true, layout-params-type=1,layout-params-string=WM.LayoutParams{(0,0)(fillxfill) sim=#22 ty=1fl=#8d810100 pfl=0x8 wanim=0x1030461 surfaceInsets=Rect(0, 0 - 0, 0)},decor-view-string=DecorView{id=-1, visibility=VISIBLE, width=1080,height=1920, has-focus=true, has-focusable=true,has-window-focus=true, is-clickable=false, is-enabled=true,is-focused=false, is-focusable=false, is-layout-requested=false,is-selected=false, root-is-layout-requested=false,has-input-connection=false, x=0.0, y=0.0, child-count=1}}]
我还尝试根据 Toast 应该关注的事实来匹配它:
onView(withText(R.string.incorrect_email_dialog))
.inRoot(isFocusable()).check(matches(isDisplayed()));
但这只是说它无法在 View 层次结构中找到它:
No views in hierarchy found matching: with string from resource id:<2131165635>[incorrect_email_dialog] value: Please enter a valid email
最佳答案
您可以尝试使用下面给出的 CustomToastMatcher:
import android.os.IBinder;
import android.support.test.espresso.Root;
import android.view.WindowManager;
import org.hamcrest.Description;
import org.hamcrest.TypeSafeMatcher;
public class ToastMatcher extends TypeSafeMatcher<Root> {
@Override public void describeTo(Description description) {
description.appendText("is toast");
}
@Override public boolean matchesSafely(Root root) {
int type = root.getWindowLayoutParams().get().type;
if ((type == WindowManager.LayoutParams.TYPE_TOAST)) {
IBinder windowToken = root.getDecorView().getWindowToken();
IBinder appToken = root.getDecorView().getApplicationWindowToken();
if (windowToken == appToken) {
//means this window isn't contained by any other windows.
}
}
return false;
}
}
像这样在测试用例中使用它:
onView(withText(R.string.mssage)).inRoot(new ToastMatcher())
.check(matches(isDisplayed()));
其他引用资料: https://stackoverflow.com/a/33387980/2069407 http://baroqueworksdev.blogspot.de/2015/03/how-to-check-toast-window-on-android.html
关于android - NoMatchingRootException 带有自定义 toast 的 Espresso ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33961861/
在android支持测试库中,为recyclerview编写测试用例时,某些演示使用TypeSafeMatcher,而其他演示则使用BoundedMatcher。谁能解释我为什么在使用示例或用例时使用
我们目前正在为我们的应用程序的一个区域编写 Espresso UI 测试,这需要我们在每次测试后清除应用程序数据 我们之前尝试过使用 Android Orchestrator 我们之前曾尝试使用带有
我已经看到了一些关于它的问题。 例如。 Android Espresso testing app flow 但是上面的答案在espresso 2中不起作用。这是我的摘录 @Rule public Ac
我正在尝试建立一个测试农场,但我发现了一个很大的障碍。手机处于休眠状态时无法运行 Espresso 测试。 android.support.test.espresso.NoActivityResume
我正在运行“gradlew connectedCheck”来在已安装的应用程序上运行 Espresso 测试,但是这个“gradlew connectedCheck”重写了我的应用程序,然后运行测试。
使用 AndroidInjector 和 Subcomponents 无法将作用域对象的事件注入(inject) Espresso 的 Test 类。 以前使用应用程序级组件和事件组件,只要您创建一个
我正在使用Espresso为我的Android应用程序编写UI测试,并想使用MockWebServer模拟HTTP请求。 在运行测试之前,我需要模拟身份验证响应并登录用户。 有没有一种方法可以使应用程
我有一个 ExpandableListView,我想 click() 它的一个 subview 。 我尝试了LOADS OF不同的方法,但我似乎无法理解 Espresso 的工作原理。 例如,为什么这
我目前不熟悉自动化测试和使用 Android Studio 使用 Espresso 执行自动化测试,我正在尝试对登录屏幕执行自动化测试,我目前在执行特定按钮的点击时遇到问题。我尝试了多种按钮方法,但对
Windows 10(64 位), 安卓工作室 3.1.2, Gradle 4.4,Java 1.8。 这是我的布局 xml 这里 @drawable/sign_in_login_bg
Firebase 测试实验室接受 App Bundle/APK 和 android 测试 APK,并且动态功能模块 UI 测试在 Firebase 测试实验室中失败。该错误是关于一些多 dex 问题,
根据我在网络上所做的搜索,我发现很少有人认为 Espresso UI 测试框架不支持 WebViews?是这样吗? 最佳答案 Espresso 支持 WebView,我在下面添加了一个示例 http:
使用 Espresso,我希望能够单击 ExpandableListView(名为 CustomExpandableView)的特定子项。 listview 创建一组RelativeLayouts(名
我有我的 xml 布局: 我想写 Espresso 测试检查 EditText 有android:drawableStart="@drawable/ic_sign_in_password". 我该怎
我正在尝试为 Android 应用程序编写 Espresso 测试,并且需要知道如何自动化使用 AutoCompleteTextView 的部分。下面提到了我的应用程序使用的代码: activity_
我正在尝试为 Android 应用程序编写 Espresso 测试,并且需要知道如何自动化使用 AutoCompleteTextView 的部分。下面提到了我的应用程序使用的代码: activity_
在我的应用中,我使用 Kotlin Flow。在我通过 EspressoIdlingResource.increment() 使用挂起函数之前,它不适用于 Kotlin Flow。如何解决这个问题?
在我的应用中,我使用 Kotlin Flow。在我通过 EspressoIdlingResource.increment() 使用挂起函数之前,它不适用于 Kotlin Flow。如何解决这个问题?
我正在尝试使用 onData 运行 espresso 测试,对于其中只有一个 AdapterView 的 View ,一切正常。但是,当屏幕显示其中嵌套了多个适配器 View 的 View 时,我得到
我想测试是否显示 ID 为 imageViewTour 且标签包含 some_text 的 imageView。 我的测试: onView(allOf(withId(R.id.imageViewTou
我是一名优秀的程序员,十分优秀!