public ListAddRemoveLookupWebElement remove(int index) {
   super.remove(index);
   return this;
 }
 public ListAddRemoveLookupWebElement clickModify(int index) {
   super.clickModify(index);
   return this;
 }
 public ListAddRemoveLookupWebElement modifyElementByChoosingFirstChoice(int index, String text) {
   super.clickModify(index);
   getInputComponent().clear();
   addElementByChoosingFirstChoice(text);
   return this;
 }
 public ListAddRemoveLookupWebElement clickAdd() {
   super.clickAdd();
   return this;
 }
 public ListAddRemoveLookupWebElement addElementByChoosingFirstChoice(String text) {
   getInputComponent().typeAndSelectFirst(text);
   super.clickAdd();
   return this;
 }