in core/src/main/java/com/facebook/testing/screenshot/internal/ScreenshotImpl.java [126:140]
public RecordBuilderImpl snapActivity(final Activity activity) {
if (!isUiThread()) {
return runCallableOnUiThread(
new Callable<RecordBuilderImpl>() {
@Override
public RecordBuilderImpl call() {
return snapActivity(activity);
}
})
.setTestClass(TestNameDetector.getTestClass())
.setTestName(TestNameDetector.getTestName());
}
View rootView = activity.getWindow().getDecorView();
return snap(rootView);
}