List<WebElement> radioGroup = Arrays.asList(radioButton, radioButton, radioButton);
List<WebElement> textInputList = Arrays.asList(textInput, textInput, textInput);
List<WebElement> htmlElementList = Arrays.asList(htmlElement, htmlElement, htmlElement);
List<WebElement> webElementList = Arrays.asList(element, element, element);
when(driver.findElements(new ByAll(By.id(ELEMENT_ID)))).thenReturn(webElementList);
when(driver.findElements(new ByAll(By.id(ELEMENT_ID), By.id(HTML_ELEMENT_ID))))
.thenReturn(Arrays.asList(element, element, element, htmlElement, htmlElement, htmlElement));
when(driver.findElement(new ByAll(By.id(ELEMENT_ID)))).thenReturn(element);
when(driver.findElement(new ByAll(By.id(HTML_ELEMENT_ID)))).thenReturn(htmlElement);
when(driver.findElement(new ByAll(By.id(ELEMENT_ID), By.id(HTML_ELEMENT_ID), By.id(BUTTON_ID))))
.thenReturn(htmlElement);
return driver;
}