public void verifyCommandIsSetToWithArguments(String command, String arguments) throws Exception {
   super.assertThatTextBoxHasValue("job[tasks][exec][command]", command);
   super.assertThatTextAreaHasValue(
       "job[tasks][exec][argListString]", arguments.replaceAll(",", "\n"));
 }
 public void selectOptionFromCommandLookupDropdown(Integer oneBasedOptionIndex) throws Exception {
   super.selectOptionFromCommandLookupDropdown(oneBasedOptionIndex);
 }
 private void waitForAutocompleteDelay() throws InterruptedException {
   super.sleepFor(600);
 }
 public void autoCompleteShouldShowSuggestions(String expectedSuggestions) throws Exception {
   waitForAutocompleteDelay();
   super.autoCompleteShouldShowSuggestions(expectedSuggestions);
 }