if (session != null && session.getDevice() instanceof RealDevice) {
if (!Configuration.BETA_FEATURE) {
Configuration.off();
}
String uuid = ((RealDevice) session.getDevice()).getUuid();
return new RealDeviceProtocolImpl(uuid, finders);
} else {
return new SimulatorProtocolImpl(finders);
}
}