private JSONObject createGenericCriteria(String using, String value) {
String prop = value.split("=")[0];
String val = value.split("=")[1];
val = getAUT().applyL10N(val);
MatchingStrategy strategy = MatchingStrategy.exact;
// for partial matching, remove the quotes.
if ("partial link text".equals(using)) {
if (val.startsWith("\"") && val.endsWith("\"")) {
val = val.substring(1, val.length() - 1);