ObjectReader reader = mapper.reader(TypeFactory.defaultInstance().constructCollectionType(List.class, classOfT));
if (inject != null){
reader = reader.with(inject);
}
try {
return reader.readValue(objString);
} catch (JsonParseException e) {
throw new WebDriverException(e);
} catch (JsonMappingException e) {
throw new WebDriverException(e);
} catch (IOException e) {