I am getting all form elements along with submit button but form submission is not working in HtmlUnit.There is onehidden field in the form but the value is set already. following is the html code of the hidden field.
Suprisingly i can select most of the form elements using Xpath not using form.getelementbyname/id/Attribute function.
webclient = new WebClient(BrowserVersion.CHROME_16);
util = new Utilities();
webclient.setJavaScriptEnabled(true);
webclient.getCookieManager().setCookiesEnabled(true);
webclient.setThrowExceptionOnScriptError(false);
HtmlPage currentPage = webclient.getPage(siteaddress);
util.appendStringToProgressPane("" + currentPage.getTitleText());
HtmlForm form = (HtmlForm) currentPage.getForms().get(1);
//username
HtmlTextInput username = (HtmlTextInput) form.getElementsByAttribute("input","name", "username").get(0);
username.setValueAttribute(user.getAccountID());
if (!username.equals(null)) {
util.appendStringToProgressPane("User name : " + username.asText());
}
//password
HtmlPasswordInput password = (HtmlPasswordInput) form.getElementsByAttribute("input", "name", "password").get(0);
password.setValueAttribute(user.getAccountPassword());
if (!password.equals(null)) {
util.appendStringToProgressPane("password : " + password.asText());
}
//Confirm password
HtmlPasswordInput cpassword = (HtmlPasswordInput) currentPage.getByXPath("/html/body/div[1]/div[3]/div[2]/form/input[3]").get(0);
cpassword.setValueAttribute(user.getAccountPassword());
if (cpassword != null) {
util.appendStringToProgressPane("confirm password : " + cpassword.asText());
}
//email
HtmlTextInput email = (HtmlTextInput) currentPage.getByXPath("/html/body/div[1]/div[3]/div[2]/form/input[4]").get(0);
email.setValueAttribute(user.getEmail());
if (email != null) {
util.appendStringToProgressPane("email : " + email.asText());
}
//testing
HtmlImage image = (HtmlImage) currentPage.getByXPath("//*[@id=\"recaptcha_image\"]/img").get(0);
if (image.hasAttributes()) {
util.appendStringToProgressPane("Src : " + image.getSrcAttribute());
}
File file = new File("x.jpg");
image.saveAs(file);
String securityCode = util.getCapchaWord("x.jpg");
HtmlTextInput capcha = (HtmlTextInput) currentPage.getByXPath("//*[@id=\"recaptcha_response_field\"]").get(0);
capcha.setValueAttribute(securityCode);
util.appendStringToProgressPane("Capcha : " + capcha.asText());
//button
HtmlSubmitInput Submit = (HtmlSubmitInput) currentPage.getByXPath("/html/body/div[1]/div[3]/div[2]/form/input[5]").get(0);
if (Submit != null) {
util.appendStringToProgressPane("Button : " + Submit.asText());
}
HtmlPage click = Submit.click();
util.appendStringToProgressPane("Site : " + click.getBaseURI());
}
No error only some warning as below :
ep 29, 2012 5:19:22 PM com.gargoylesoftware.htmlunit.IncorrectnessListenerImpl notify
WARNING: Obsolete content type encountered: 'text/javascript'.
Sep 29, 2012 5:19:22 PM com.gargoylesoftware.htmlunit.IncorrectnessListenerImpl notify
WARNING: Obsolete content type encountered: 'application/x-javascript'.
Sep 29, 2012 5:19:23 PM com.gargoylesoftware.htmlunit.IncorrectnessListenerImpl notify
WARNING: Obsolete content type encountered: 'text/javascript'.
Sep 29, 2012 5:19:23 PM com.gargoylesoftware.htmlunit.IncorrectnessListenerImpl notify
WARNING: Obsolete content type encountered: 'application/x-javascript'.
Sep 29, 2012 5:19:23 PM com.gargoylesoftware.htmlunit.DefaultCssErrorHandler error
WARNING: CSS error: 'http://pdfcast-data.appspot.com/css/style_fb_bt_apl_star.min.css?1' [217:134] Error in expression. (Invalid token "=". Was expecting one of: <S>, <NUMBER>, "inherit", <IDENT>, <STRING>, <PLUS>, <COMMA>, <HASH>, <EMS>, <EXS>, <LENGTH_PX>, <LENGTH_CM>, <LENGTH_MM>, <LENGTH_IN>, <LENGTH_PT>, <LENGTH_PC>, <ANGLE_DEG>, <ANGLE_RAD>, <ANGLE_GRAD>, <TIME_MS>, <TIME_S>, <FREQ_HZ>, <FREQ_KHZ>, <DIMENSION>, <PERCENTAGE>, <URI>, <FUNCTION>, "/", "-", ")".)
Sep 29, 2012 5:19:23 PM com.gargoylesoftware.htmlunit.DefaultCssErrorHandler error
WARNING: CSS error: 'http://pdfcast-data.appspot.com/css/style_fb_bt_apl_star.min.css?1' [217:139] Error in style rule. (Invalid token "text-align". Was expecting one of: <EOF>, "}", ";".)
Sep 29, 2012 5:19:23 PM com.gargoylesoftware.htmlunit.DefaultCssErrorHandler warning
WARNING: CSS warning: 'http://pdfcast-data.appspot.com/css/style_fb_bt_apl_star.min.css?1' [217:139] Ignoring the following declarations in this rule.
Sep 29, 2012 5:19:23 PM com.gargoylesoftware.htmlunit.DefaultCssErrorHandler error
WARNING: CSS error: 'http://pdfcast-data.appspot.com/css/style_fb_bt_apl_star.min.css?1' [251:69] Error in expression. (Invalid token ".". Was expecting one of: <S>, <NUMBER>, "inherit", <IDENT>, <STRING>, <PLUS>, <COMMA>, <HASH>, <EMS>, <EXS>, <LENGTH_PX>, <LENGTH_CM>, <LENGTH_MM>, <LENGTH_IN>, <LENGTH_PT>, <LENGTH_PC>, <ANGLE_DEG>, <ANGLE_RAD>, <ANGLE_GRAD>, <TIME_MS>, <TIME_S>, <FREQ_HZ>, <FREQ_KHZ>, <DIMENSION>, <PERCENTAGE>, <URI>, <FUNCTION>, "/", "-", ")".)
Can anyone explain why this form submission is not working.And how can i do this.Thanks in advance