Я пытаюсь найти Amazon.Я хочу выбрать категорию, например.Книги, введите некоторые критерии поиска, например,Java и нажать кнопку Go.Моя проблема заключается в нажатии кнопки Go.У меня есть исключение:
Исключение в потоке "main" java.lang.IndexOutOfBoundsException: Index: 0, Size: 0 at java.util.ArrayList.rangeCheck (ArrayList.java:571) вjava.util.ArrayList.get (ArrayList.java:349) в Bot.clickSubmitButton (Bot.java:77) в Bot.main (Bot.java:111)
Вот мой код:
/**
* @author ivan.bisevac
*/
import java.io.IOException;
import java.net.MalformedURLException;
import com.gargoylesoftware.htmlunit.FailingHttpStatusCodeException;
import com.gargoylesoftware.htmlunit.WebClient;
import com.gargoylesoftware.htmlunit.html.HtmlImageInput;
import com.gargoylesoftware.htmlunit.html.HtmlInput;
import com.gargoylesoftware.htmlunit.html.HtmlOption;
import com.gargoylesoftware.htmlunit.html.HtmlPage;
import com.gargoylesoftware.htmlunit.html.HtmlSelect;
import com.gargoylesoftware.htmlunit.html.HtmlSubmitInput;
public class Bot {
private HtmlPage currentPage;
public HtmlPage getCurrentPage() {
return currentPage;
}
public Bot() {
}
/**
* Bot constructor
*
* @param pageAddress
* Address to go.
* @throws IOException
* @throws MalformedURLException
* @throws FailingHttpStatusCodeException
*/
public Bot(String pageAddress) throws FailingHttpStatusCodeException,
MalformedURLException, IOException {
this();
this.goToAddress(pageAddress);
}
/**
*
* @param pageAddress
* @throws FailingHttpStatusCodeException
* @throws MalformedURLException
* If pageAddress isn't formatted good (for example, it is just
* www.google.com without http://) then this exception is thrown
* @throws IOException
*/
public void goToAddress(String pageAddress)
throws FailingHttpStatusCodeException, MalformedURLException,
IOException {
WebClient webClient = new WebClient();
currentPage = webClient.getPage(pageAddress);
}
/**
* Fills text into input field
*
* @param inputId
* <input> tag id
* @param textValue
* Text to fill into input field
*/
public void setInputValue(String inputId, String textValue) {
HtmlInput input = (HtmlInput) currentPage.getElementById(inputId);
input.setValueAttribute(textValue);
}
/**
*
* @param buttonId
* Button id
* @throws IOException
*/
public void clickImageButton(String xpathExpr) throws IOException {
HtmlImageInput button = (HtmlImageInput) currentPage
.getFirstByXPath(xpathExpr);
currentPage = (HtmlPage) button.click();
}
/**
*
* @param radioButtonId
* @param radioButtonOption
* @throws IOException
* @throws InterruptedException
*/
public void selectRadioButton(String radioButtonId, String radioButtonOption)
throws IOException, InterruptedException {
final HtmlInput radio = (HtmlInput) currentPage
.getElementById(radioButtonId);
radio.click();
Thread.sleep(10000);
}
/**
*
* @param dropListId
* @param dropListOption
*/
public void selectDropList(String dropListId, String dropListOption) {
HtmlSelect select = (HtmlSelect) currentPage.getElementById(dropListId);
HtmlOption option = select.getOptionByValue(dropListOption);
select.setSelectedAttribute(option, true);
}
public static void main(String[] args) throws IOException {
Bot bot = new Bot("http://www.amazon.com");
bot.selectDropList("searchDropdownBox", "search-alias=stripbooks");
bot.setInputValue("twotabsearchtextbox", "java");
bot.clickImageButton("//div[@id='navGoButton']/input");
bot.getCurrentPage().getTitleText();
}
}
Очевидно, что существует проблема в методе clickSumbitButton при выборе элемента ввода внутри div.Это дает пустой массив.Может ли кто-нибудь помочь мне решить эту проблему?
Редактировать: После рефакторинга метода clickImageButton у меня возникает ошибка в строке: currentPage = (HtmlPage) button.click ();Вот трассировка стека:
Исключение в потоке "main" java.lang.NullPointerException в Bot.clickImageButton (Bot.java:81) в Bot.main (Bot.java:114)