lab08 - Kawin3236/course-android-kmitl GitHub Wiki

เกี่ยวกับการทำUnit Test ก่อนทำงานต่างๆควรคุยกับลูกค้าให้รู้เรื่องก่อน จะได้ไม่ผิดพลาดหรือทำให้เกิด "Bug" ขึ้นได้ AndroidTestCompile = ส่วนที่ใช้ตรวจสอบหน้าจอ

Run >> Record Espresso Test

onView(withText("...").check(matchs.isdisplay()));

onView(withId(R.id.editTExtName)).perform(replaceText("xxx"), closeSoftKeyboard()); onView(withId(R.id.editTextAge)).perform(replaceText("15"), closeSoftKeyboard()); onView(allOf(withId(R.id.buttonAdded), withText("ADDED"))).perform(click()); onView(allOf(withId(R.id.buttonGotoList), withText("GO TO LIST"))).perform(click());

    onView(withText("xxx")).check(matches(isDisplayed()));