HtmlUnit is a "headless browser". Which means that there is no browser GUI and it does no rendering. Though it has a CSS and JS engine to simulate a real browser. Primary purpose is testing and information extraction.

learn more… | top users | synonyms

0
votes
0answers
12 views

htmlunit javascript performance

I made a performance test of htmlunit against selenium with firefoxdriver and firefox 21. The performance test was made on my windows7 machine through Eclipse. When both have javascript disabled, the ...
0
votes
0answers
8 views

Error with a certain JavaScript file when running test case on Selenium and HtmlUnitDriver but not with FirefoxDriver in Java

I ran into an issue running a test case in HtmlUnitDriver with Selenium and Java. And the problem seems to occur in the following JavaScript file, is it a bug or is there a function I need to invoke ...
2
votes
1answer
29 views

How can I force HtmlUnit to parse a Javascript file in UTF-8 in a GWT Test Case?

I'm writing a GWTTestCase on a GWT Module including an external Javascript file which contains non-ASCII characters in variables names (d3.js). I get this Error : SEVERE: error: message=[illegal ...
0
votes
1answer
23 views

What does this exception thrown while using htmlunit in a webservice mean?

I'm trying to use htmlunit in a web service. I created a dynamic web project and implemented the function homepage(). Then I used the web service wizard to generate the web server and the client. When ...
0
votes
0answers
14 views

how to print text of frames with htmlunit

Consider the following html file a.html <html> <frameset> <frame src="frame_a.html"> </frameset> </html> The frame_a.html is the following <html> ...
0
votes
1answer
32 views

Faster page processing with HtmlUnit

So far I have a working code that use HtmlUnit to get a page asXML However, I find it that, it is processing everything on the page including shockwave flash objects. Which makes the processing slow. ...
1
vote
1answer
37 views

Can I use htmlunit in a web service?

I've been trying to use htmlunit inside a web service function. I am new to web services and I used this tutorial for implementing a simple web service: ...
0
votes
1answer
39 views

How to run Selenium browsers in the background in windows

I'm trying to click on a javascript button in this site(its the search button on the left): http://www.amadeusepower.com/trek/portals/trek/default.aspx?Culture=en-US I couldn't find a way to click on ...
0
votes
0answers
25 views

HTMLUnit: change User Agent string

I'm using HtmlUnit in my Java project in order to test a web page that has got Javascript inside. My code clicks a button that calls a Javascript function, wich redirect the user to another page (like ...
0
votes
1answer
12 views

how to get modified ajax content with htmlunit

I wanted to share with you how to retrieve the content of a html page which is changed by ajax. The following code returns the old page. public class Test { public static void main(String[] args) ...
3
votes
1answer
104 views

How to click on a javascript button in htmlunit

I'm trying to click on a search button in this website: http://www.amadeusepower.com/trek/portals/trek/default.aspx?Culture=en-US The button is in here somewhere <table cellpadding="0" ...
0
votes
0answers
18 views

how to force htmlunit to use another encoding

I'm trying to access a turkish website which is according to their meta tag encoded in windows-1254. When I try to get the page with htmlunit, this exception is thrown: Exception in thread "main" ...
0
votes
0answers
24 views

htmlunit shows same page after clicking submit button [closed]

I searched and read about similar questions but none of the solutions I found worked for me. I have been trying to get the flight prices from skyscanner.com. I am using HtmlUnit for this because I ...
0
votes
0answers
14 views

How to get “pure” text from <a> element using HtmlUnit?

I have a following code on page: <a href="something"> <div_something > ... </div> Public </a> I have HtmlAnchor a I want to pull word Public by using ...
0
votes
0answers
26 views

HtmlUnit setUseInsecureSSL not working

The following code tries to fetch a page from wikipedia public class TestWikipedia { public static void main(String[] args) { WebClient client = new WebClient(); ...
0
votes
1answer
31 views

Using HtmlUnit to click on multiple images on same page that have same source attribute but different onclick events

I'm using HtmlUnit to get data from a webpage. The web page has multiple images that look the same and have the same src value but each one has a different onclick event that directs it to a new page ...
0
votes
0answers
39 views

HTMLUNIT Driver- URL works fine in Firefox but It does work in HTMLUNITDriver

URL does not work in HTML UNIT Driver but it works fine for firefox. driver.get(URL) does not open anything it fails there, but it works fine for other 8 URLs which we are testing. Its causing ...
0
votes
1answer
28 views

Configuring HTMLUNIT's logging level in Play-SBT

I'm trying to run Selenium tests using Play's built-in testing framework (TestServer, FakeApp, running() method) and running it through SBT, but the logging level for HTMLUNIT seems to be set at ...
0
votes
1answer
49 views

WebDriver open rich:popupPanel

We are testing an application with Selenium WebDriver. HTMLUnitDriver is our choice (because of non-gui-testing) and sometimes IEDriver for Presentationpurposes. Anyway, i try to perform a click on a ...
0
votes
2answers
39 views

how to get text between a specific span with HtmlUnit

I'm new to HtmlUnit and I'm not even sure if it is the right tool for my project. I'm trying to parse a website and extract the values I need from it. I need to get the value "07:05" from this, ...
2
votes
0answers
45 views

What is the trade-off for disabling CSS in HTMLUnit?

I experienced slowness in HTMLUnit 2.12, and therefore disabled CSS as explained in HTMLUnit : super slow execution?. I want to understand what the trade-off is. Does it mean that I cannot use XPath ...
0
votes
1answer
35 views

Highlight nodes covered by XPath

I want to highlight nodes covered by a given XPath in an HTML page source. I looked to in HtmlUnit, could not find any thing in API. At present, I am thinking of doing it following way: Get XPath ...
0
votes
0answers
26 views

Htmlunit html code different from browser got

I'm going to write a program that can auto trade with btc-e.com. Maybe my country's ip is banned by btc-e, I have to enter captcha code by myself. So what I what to do is to get the image url and ...
0
votes
0answers
37 views

HtmlUnit: avoid the «Bad input type: “search”, creating a text input» info text

I'm creating a monitor with Selenium Webdriver (in Java) which browses a webpage every few minutes to check if something went wrong when users updated it, so I can send an alarm and revert the page to ...
1
vote
1answer
115 views

What would cause HtmlUnit to throw 40+ Exceptions and fail when I try to load a page with javascript?

I'm attempting to scrape the practice quizzes from my History Book's website so that I can assemble them all into one big test to study. The page is here. It is all driven by javascript, so I'm ...
1
vote
1answer
65 views

HTMLUnit executing form with javascript code

All i want to do is remotely ask a question on ask.fm using java nad HTMLUnit framework. I think it doesn't work because of the javascript code, but i'm not sure. this is how the ask question form ...
-2
votes
1answer
136 views

Java Selenium Htmlunit Driver Javascript error [closed]

Is there any other option to disable javascript in HtmlUnit. While navigating HtmlUnit it not processing further it going in infinite loop, so i am trying to disable javascript using following code ...
-2
votes
0answers
57 views

Scraping pages with javascript - comparison [closed]

I know that scraping can be done with lots of languages and with the excellent phantomjs. Having said that, I want to migrate a phantomjs script that I have to a more versatile language in order to ...
0
votes
1answer
109 views

Java and HTMLUnit: How to click on submit button?

I am brand new to Java and need to write various java applications to do web scraping and web page interaction. I started using Selenium but because it interacts directly with a browser, it is not ...
0
votes
2answers
128 views

StackOverflowError in String.toLowerCase

It looks like a too long String causing folowing exception: Caused by: java.lang.StackOverflowError at java.lang.String.toLowerCase(String.java:2496) at ...
0
votes
0answers
28 views

Issue with HtmlUnit on Android

I've been having an issue using HtmlUnit on Android. protected Boolean doInBackground(Void... params) { WebClient webClient = new WebClient(); return true; } This simple code results in a ...
0
votes
0answers
47 views

How can I use Htmlunit to click(),like anchor[X].click(),to just get the URL of the LINK,but not load the page?

How can I use Htmlunit to click(), like anchor[X].click(), to just get the URL of the LINK, but not load the page? I want to write a Crawler which intends to parse the URL written in javascript, i ...
1
vote
1answer
230 views

HTMLUNIT Driver : The data necessary to complete this operation is not yet available

I have a problem with Scala fluentlenium tests on play 2.1.1 and HTMLUNIT driver. The error is the next : [error] 2013-04-13 15:15:40,548 - c.g.h.j.StrictErrorReporter - runtimeError: message=[The ...
0
votes
0answers
70 views

Selenium HTMLUNIT execution time is very slow

I am using HTMLUnit to run the selenium scripts to test a website on virtual mode. I have developed all the selenium related code in eclipse IDE. I have extracted a jar from eclipse using FAT JAR ...
0
votes
1answer
33 views

How to filter javascript from specific urls in HtmlUnit

HtmlUnit takes lot of time to execute javascript, i would like to know if its possible to make HtmlUnit not to load javascript from url regex filters.
0
votes
1answer
53 views

Scraping an aspx site with HtmlUnit, how does one click on a Javascript button?

I'm attempting to scrape an .aspx site, which is a essentially just a big paginated table along the lines of the one found here: http://data.fingal.ie/ViewDataSets/ (Note, the actual site I'm scraping ...
0
votes
0answers
36 views

how to get server response use HtmlUnit, when upload file

I want upload image to this server: http://encodable.com/uploaddemo/ Use HtmlUnit , seems upload the image successed, but the backPage from "bu.click()" not exaclty what i want, it stays to be the ...
0
votes
1answer
112 views

HtmlUnit to get page source code implementation shows Exception

I try to get a dynamic page from URL. I am working in Java. I have done this using Selenium, but it takes lots of time. As it takes time to invoke driver of Selenium. That's why I shifted to HtmlUnit, ...
0
votes
0answers
49 views

How to use htmlunit via command line to get HTML Source

I read on Google's Ajax Crawling pages that htmlunit will execute JS. I'm thus loking for a way to execute htmlunit from the command line, passing the URI I'd like to get the HTML source code of ...
1
vote
1answer
103 views

HtmlUnitDriver causes problems while getting an url

I have a page crawler developed in Java using Selenium libraries. The crawler goes through a website that launches through Javascript 3 applications which are displayed as HTML in popup windows. The ...
4
votes
2answers
157 views

OutOfMemoryError while using HtmlUnit for scrapping

I am using HtmlUnit to login on to a site and then download data from the table When I run my code is is causing java.lang.OutOfMemoryError And could not run further. Following is my code : ...
0
votes
0answers
25 views

HtmlUnit - How to get element by contenet

I have the following html body: ... <body onload="do_onload()"> <table cellspacing="0" cellpadding="2" border="0"> <tbody> <tr> <th colspan="1" ...
0
votes
0answers
55 views

HtmlUnit doesn't work with some https site

i'm trying to open this link "https://mobilemoney.mtncameroon.net/indexMPG.html" using HtmlUnit (version 2.11, but the older version give the same error) and i'm getting this error: ...
0
votes
0answers
55 views

Web-scraping with HtmlUnit, Is there a way to access the content that is loaded in a Shadowbox?

I'm attempting to scrape a page that uses shadowboxes to launch a form. The link in question is formatted as follows: <a rel="shadowbox;height=600;width=700" href="enter_details.php">Enter ...
0
votes
1answer
78 views

HtmlUnit error will not get second page after javascript?

Somebody please explain why am getting null pointer exception HtmlPage page = null; boolean savePagesLocally = false; String url = "http://example.com"; WebClient webClient = new ...
0
votes
0answers
57 views

Retrieve the result page with htmlunit

I am trying to simulate a search site travel ticket with HtmlUnit. The goal is to have the page Result of the search. My code returns the search page(waiting for the result ...) Here is the code: ...
0
votes
1answer
49 views

Login with htmlunit and javascript [closed]

I have one quick question about htmlUnit, I hope that somebody can help me. How to login into this site http://ld.opendata.cz:8897/sparql-auth ?? I have no problems with static pages but I don't like ...
1
vote
1answer
81 views

HtmlUnit generates warning for invalid css

We are using htmlunit for our functioal test and it works very well. One of the issue I have seen is in build, it generates some warning messages: ERROR [main] (StrictErrorReporter.java:80) - ...
0
votes
0answers
28 views

How to handle NoHttpResponseExcpetion in htmlunit 2.9

I am getting below Exception when i click on submit button of my form. After searching it more on google, looks like this exception is thrown when server didn't response to the request submitted by ...
0
votes
0answers
190 views

How to parse a HTML File into Java Objects (Selenium, XPATH, HtmlUnit, …)

After some crawling tests I have a lot of HTML Sites as Textfiles on my harddisk (They are comming from the same site and having almost the same Structure). Now I need to parse this Files into Java ...

1 2 3 4 5 14