How do I perform a click on a javascript button using Jsoup?

 String html = Jsoup.connect(url)
                .followRedirects(true)
                .data("login_name", username)
                .data("password", userpassword)
                .method(Method.POST).get().html();

This is the code I used to set the username and password fields in a website, however when I grab the html, it gives me the html of the login page with the page's fields filled out, rather than the page after login. So that must mean that Jsoup simply filled the fields out, but didn't log me in. How would I go about doing that? Also, the login button doesn't have an id element, nor does it have a name element. It only has javascript. Sorry if I'm not being clear, I'm new to this. Here's the html code for the form:

 <form name="form" id="form" method="POST" action="/portal/login?etarget=login_form" autocomplete="off"> 

This is the html code for the login button:

<a href="javascript:document.form.event_override.value='login';document.form.submit();" class="btn_css">    

How would I 'click' the login button using Jsoup? Also, I tried using the .post() method instead of .method(Method.POST), however when I did that, my program didn't work, and gave me this message: "Error: 400 error loading URL"

Also I do not own the website, and I'm using this in a native app that I'm building for Android.

link|improve this question

25% accept rate
feedback

1 Answer

When passing a URL in connect method , instead of passing the Login Page URL , pass the link of home page.

Document doc = Jsoup.connect("http://www.website.com/home.php")
  .data("email", "myemailid")
  .data("pass", "mypassword")
  // and other fields which are being passed in post request.
  .userAgent("Mozilla")
  .post();  

Try this and you will get your result.

link|improve this answer
the 'login_name' and 'password' elements aren't on the homepage. I tried this, but the .post() method gave me the "Error: 400 error loading URL" again – Dr. Danger Jan 7 at 0:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.