如果一个测试用例失败,则应用程序不应该停止在android espresso

时间:2017-03-29 09:48:45

标签: android ui-automation android-espresso

我想在登录时检查警报消息文本,如果有人输入错误的凭据然后警报消息将显示。在我的测试用例中,我检查了警告消息,如果它的错误或正确。但不知何故,如果测试用例中的文本将是“Invali电子邮件”和警报显示“无效的电子邮件ID”然后该应用程序不应该停止测试另一个案例。我的意思是它应该恢复或做什么,这不会影响进一步的案例

if(!emailValidator(editText.getText().toString())){
                buttonlogin.click();
                UiObject notice_message = new UiObject(new UiSelector().resourceId("com.vastedge.priceguide:id/notcicemesage"));
                assertEquals("Invalid email",notice_message.getText().toString());
                onView(withId(R.id.ok)).perform(click());
            }

0 个答案:

没有答案