0

Android 테스트를 위해 Espresso 프레임 워크를 사용하고 있으며 실제 기기의 자동 테스트에는 Testdroid-Cloud을 사용하고 있습니다.Android - 에스프레소 테스트 - 테스트 드로이드 결과에 표시 될 스크린 샷을받는 방법?

아무도, 에스프레소 Testdroid 대시 보드에 표시되는 스크린 샷을 만드는 방법을 알고 계십니까?

나는 에스프레소Testdroid 크롤러가 자동으로 스크린 샷을 비활성화합니다. 에스프레소 -framework를 사용하면 그렇지 않습니다! 스크린 샷을 참조 :

enter image description here

+0

도움이 될 것입니다 희망 (

@Test public void checkIfSettingsMenuItemsAreVisible() throws InterruptedException { //open OptionsMenu to see available items openActionBarOverflowOrOptionsMenu(mRule.getActivity()); //create a screenshot with 'options_menu' TAG Spoon.screenshot(mRule.getActivity(), "options_menu"); //check if Settings item is Visible onView(withText(R.string.action_settings)).check(matches(isDisplayed())); //check if 'Sort' item is Visible onView(withText(R.string.action_sort)).check(matches(isDisplayed())); //perform click on 'Sort' OptionsMenu item onView(withText(R.string.action_sort)).perform(click()); //create a screenshot with 'options_menu_sort' TAG Spoon.screenshot(mRule.getActivity(), "options_menu_sort"); //check if 'Sort -> By Value id' item is Visible onView(withText(R.string.menu_sort_length)).check(matches(isDisplayed())); //check if 'Sort -> By Joke length' item is Visible onView(withText(R.string.menu_sort_a_z)).check(matches(isDisplayed())); } 

공식 Spoon 사이트를 확인하시기 바랍니다 http://instantdevices.com/tech/tips-and-tricks-taking-screenshots-with-es-espresso-or-espresso-v2-0), 왜 _ ""권한? 자동 테스트 드로이드 크롤러가이 허가없이 스크린 샷을 만듭니다! 답변을위한 –

답변

1

을 나는 Testdroid Crawler 구글의 monkey UI/Application ExerciserAppium 테스트 프레임 워크를 기반으로 유사한 계측 테스트 도구입니다 알고.

자동 테스트 드로이드 크롤러는이 허가없이 스크린 샷을 만듭니다!

틀렸어. 필요한 모든 시스템 권한은 앱 런타임에 adb (Android Debug Bridge) 또는 appium 스크립트에 의해 제공됩니다. 알림, 당신은 Crawler 구현, 그냥 결과를 볼 수 없습니다.

에스프레소에게 스크린 샷을 만드는 방법을 알려주는 사람이 있습니까? 은 (는) Testdroid 대시 보드에 표시되어 있습니까?

Here'a 사용자 정의 에스프레소 방법을 사용하여 수행하는 방법 빠른 자습서 : AndroidMainfest.xml에이 줄을 추가하는 기억 http://testdroid.com/tech/tips-and-tricks-taking-screenshots-with-espresso-or-espresso-v2-0

을 :

또 다른 가능성은 Spoon을 사용하는 것입니다 Espresso과 함께 다음과 같은 테스트는 것 같습니다 http://square.github.io/spoon/

이 기사 : http://elekslabs.com/2014/05/creating-test-reports-for-android-with-spoon-and-emma.html

그것이 내가 [설명]을 발견했습니다

+0

Thx! 동영상을 캡처하는 방법에 대한 아이디어가 있습니까? –