protected WebElement findElement(String by, String using) {
if (using == null) {
throw new IllegalArgumentException("Cannot find elements when the selector is null.");
}
WebDriverLikeRequest request = buildRequest(WebDriverLikeCommand.ELEMENT,
ImmutableMap.of("using", by, "value", using));
return commandExecutor.execute(request);
}