{
RequestBuilder rb = new RequestBuilder(ServerConfiguration.getServerUrl());
final MultipartEntity entity = new MultipartEntity();
// Add Sling POST options
entity.addPart("lang", new StringBody("groovy"));
entity.addPart("code", code);
executor.execute(
rb.buildPostRequest("/system/console/sc").withEntity(entity).withCredentials(
"admin", "admin")).assertStatus(200);
}