Questions tagged [jaunt-api]

Jaunt is a free Java web-scraping and automation library.

Jaunt Beta is a new, free, Java web-scraping/automation library. The API presents a lightweight, headless browser for interfacing with websites, web-apps, and web services. Jaunt makes it easy to parse, traverse, search, extract and filter HTML & XML data. It provides three levels of abstraction: DOM-level, component-level, and browser-level. It is an ideal API for web automation where Javascript is not required, including: filling out and submitting forms creating web-bots or web-scraping programs. creating REST clients for XML services. interfacing with web-based APIs or web-apps. automated testing.

37 questions
0
votes
2 answers

Opening url from android, which requires basic authentication

Overview : I'm trying to make an android application for my college email service. Its hosted by Zimbra, Webmail. Im using Jaunt-Api to scrape data from the website. My question is: I have the link (url) to the attachment. When I open the link…
0
votes
1 answer

Java Web Scraping wth Jaunt Library

I'm facing a problem with Java web scraping. This is the website: (http://www.bbc.com/sport/football/teams/liverpool) From here I want to scrape the Headlines data. Note: I'm using Jaunt Library. public class News extends JFrame { private String…
Apprentice
  • 329
  • 1
  • 4
  • 4
0
votes
2 answers

how to submit form when input type is image

I am new for web scraping.For Scraping using amazing API Jaunt.I want to Filling-out form fields and getting problem while submiting a form because used input type is image not an submit button. Sample Code: try { userAgent = new…
Sameek Mishra
  • 9,174
  • 31
  • 92
  • 118
0
votes
0 answers

Parser don't download inside of

I have a problem with using a parser in Java. I would like to do get informations from a website. The problem is that the parser is not downloading what is inside some . In the source code (when I open through a web browser) I can see what is inside…
Ganjira
  • 966
  • 5
  • 16
  • 32
0
votes
1 answer

Getting incorrect output with the for each in Java

I have an XML feed like below and am using Jaunt API for its parsing: 12 march 15 march I wrote the following code Elements i =agent.doc.findEach(""); { for…
0
votes
3 answers

How to extract specific text from HTML table?

Here is my HTML file I want to extract word (pending, Next Listing Date (Likely):, 10/01/2014). I am using jaunt and JSoup.
Shakti
  • 89
  • 2
  • 3
  • 10
-7
votes
1 answer

NullPointerException- I don't know where

sorry for expanding NullPointerException flood :D I have read tons of questions about NullPointerException but I can't figure out where is problem in my code. problematic line: if(userAgent.doc.innerHTML().contains("haha") I tried String x =…
1 2
3