Tagged Questions
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.
11
votes
2answers
1k views
Making AJAX Applications Crawlable? How to build a simple web service on Google App Engine to produce HTML Snapshots?
Real World Problem:
I have my app hosted on Heroku, who (to my knowledge) are unable to offer a solution for running a Headless (GUI-less) Browser - such as HTMLUnit - for generating HTML Snapshots ...
10
votes
6answers
2k views
Screen scraping with Python
Does Python have screen scraping libraries that offer JavaScript support?
I've been using pycurl for simple HTML requests, and Java's HtmlUnit for more complicated requests requiring JavaScript ...
9
votes
3answers
2k views
.net equivalent of htmlunit?
Does anybody know if there is a .net equivalent of htmlunit or similar library?
I've heard that people have used IKVM to convert the htmlunit library. But I have also heard that the converted code is ...
7
votes
4answers
2k views
How can I tell HtmlUnit's WebClient to download images and css?
How can I make WebClient download external css stylesheets and image bodies just like a usual web browser does?
6
votes
5answers
2k views
Alternative to HtmlUnit
I have been researching about the headless browsers available till to date and found HtmlUnit being used pretty extensively. Do we have any alternative to HtmlUnit with possible advantage compared to ...
5
votes
1answer
231 views
Restricting Selenium/Webdriver/HtmlUnit to a certain domain
While using selenium/webdriver for web scraping, I realized the target site has google analytics script running. Is there a way to restrict selenium/webdriver/htmlunit to avoid certain urls/domains ?
...
5
votes
2answers
569 views
How to ignore HTMLUnit warnings/errors related to jQuery?
Is it possible to teach HTMLUnit to ignore certain javascript scripts/files on a web page? Some of them are just out of my control (like jQuery) and I can't do anything with them. Warnings are ...
5
votes
2answers
637 views
Can't turn off HtmlUnit logging messages
I'm using HtmlUnit to interact with a web page that interacts with the server via Ajax. Soon after the Ajax code starts, HtmlUnit produces these two log messages:
WARNING: Ignoring ...
5
votes
2answers
998 views
How do I use the HTMLUnit driver with Selenium from Python?
How do I tell Selenium to use HTMLUnit?
I'm running selenium-server-standalone-2.0b1.jar as a Selenium server in the background, and the latest Python bindings installed with "pip install -U ...
5
votes
1answer
901 views
How to save HtmlUnit cookies to a file?
I'd like to save HtmlUnit cookies to a file and on next run load them from that one. How can I do that? Thanks.
5
votes
3answers
936 views
Can HtmlUnit handle JavaScript redirects?
Instead of automatically following JavaScript redirects, can I force HtmlUnit to return the URL the JavaScript wants to redirect me to?
// context:
If there's 5 JavaScript redirects in a row, I can ...
4
votes
1answer
130 views
Android: CSS Error when using HTML Unit & Eclipse
I am using Html Unit to go to a webpage, fill in some forms, and click a button to get to the next webpage. That new webpage, (called newPage in my code) is what I'm extracting the html source from.
...
4
votes
1answer
225 views
How to make HtmlUnit's WebClient accelerate execution of javascript to be triggered by window.setTimeout?
I am using the Java library HtmlUnit to create a regression test suite for a web app.
I have an "onload" handler hooked in the body of pages of the app to redirect to a timeout page after the session ...
4
votes
1answer
808 views
How reliable is HtmlUnitDriver?
Obviously, the answer to the question depends on a number of environmental factors.
In general, I'm wondering what people's experiences are with HtmlUnitDriver as a reliable tool that can be ...
4
votes
3answers
1k views
How to use HtmlUnit in Java to select an element from a drop down box?
I'm using HtmlUnit in Java to navigate to a web page. From that webpage i need to log in and then go from there. I know how to type in the user name and password but then there is a dropdown box where ...
4
votes
1answer
453 views
HtmlUnit and Fragment Identities
I'm currently wondering how to deal with fragment identities, a link that I am wanting to grab information from, contains a fragment identity. It seems as if HtmlUnit is discarding the "#/db4mj" of my ...
4
votes
2answers
687 views
Ajax Crawling on Google App Engine - Does HtmlUnit work?
http://code.google.com/web/ajaxcrawling/docs/html-snapshot.html
Does HtmlUnit work on AppEngine? If not, are there any other ways to make my GWT app crawlable by search engines?
4
votes
1answer
719 views
HtmlUnit - dynamically loaded JavaScript not running
I'm trying to write some automated tests of a website using HtmlUnit. Our web pages load two JavaScripts, one of which then loads several other JavaScripts dynamically into the DOM. These JavaScripts ...
4
votes
1answer
525 views
How to post HEAD request with HtmlUnit?
How can I use existing WebClient to post a custom HEAD request? I.e. there is no form on the page, I want to set request properties manually.
3
votes
1answer
95 views
Is it possible to ignore JavaScript exceptions when working with WebDriver (HtmlUnit, Ruby bindings)
HtmlUnit throws exception and crash my test when I'm loading the page
caps = Selenium::WebDriver::Remote::Capabilities.htmlunit(:javascript_enabled => true)
driver = ...
3
votes
2answers
130 views
Check availability of Internet Connection + Communicate between 2 threads
I have 2 questions:
How can I check if Internet connection is whether turned on or turned off? I'm using Html Unit and I'm working on Windows.
I want to make a JLabel that states the availability of ...
3
votes
1answer
774 views
How stable and fast is HtmlUnit
I'm upgrading from selenium-1 to selenium-2 and trying out the new HtmlUnit driver. I've tried a few basic tests on it (open a page, get_text,..) and it seems
Extremely slow (I think the chrome/FF ...
3
votes
3answers
196 views
HtmlUnit to view source
HtmlUnit for Java is great but I haven't been able to figure out how to view the full source or return the source of a web site as a string. can anyone help me with this?
I know the follow will read ...
3
votes
2answers
124 views
How to limit HtmlUnit's history size?
I'm using HtmlUnit for a parsing job and I've discovered that the memory gets wasted with the WebClient holding the history for each WebWindow. I don't use the history at all and I'd like to disable ...
3
votes
2answers
618 views
Using HtmlUnit/HttpUnit under GAE
I'm trying to load the DOM of web pages in my application (running under Google App Engine), using HtmlUnit, HttpUnit or any similar library.
Did anyone manage to do something similar?
2
votes
3answers
132 views
Looking for a “web-scraping script builder”
I'm writing the code to access and download data from some web sites using HTMLUnit.
I was wondering whether a tool that could help me exists. I think maybe to a visual tool, something that lets you ...
2
votes
1answer
154 views
How to combine scrapy and htmlunit to crawl urls with javascript
I'm working on Scrapy to crawl pages,however,I can't handle the pages with javascript.
People suggest me to use htmlunit, so I got it installed,but I don't know how to use it at all.Dose anyone can ...
2
votes
2answers
92 views
Running HtmlUnit with Jython - issue with startup on command line
I tried to run HtmlUnit with Jython following this tutorial:
http://blog.databigbang.com/web-scraping-ajax-and-javascript-sites/
but it does not work for me. I am unable to import the ...
2
votes
2answers
157 views
Htmlunit : filling a form that refreshes automatically
I can normally fill-in a form using an HtmlUnit and submit it to the server. Fine.
UnfortunateIy I don't know how to fill-in a specific form that refreshes to server depening on values I set on the ...
2
votes
3answers
604 views
How to load ajax with HtmlUnit?
import java.io.IOException;
import java.net.MalformedURLException;
import java.util.List;
import com.gargoylesoftware.htmlunit.FailingHttpStatusCodeException;
import ...
2
votes
1answer
103 views
Is HtmlUnit 2.8 getFirstByXPath different from HtmlUnit 1.14 getFirstByXPath?
I have a site structure that looks something like this:
<div class='main_container'>
<div class='item_container'>
<div class='body'>
<span ...
2
votes
3answers
307 views
Login check using HtmlUnit
Hy... i want to login to some 3rd party sites using HtmlUnit. But HtmlUnit should be able to tell me whether the login attempt to the input site is successful or not. Is there any way around to ...
2
votes
1answer
93 views
Limiting bandwidth in htmlunit
I'm using htmlunit to make some tests but I don't want them to use all my available bandwidth. How can I set a limit on upload/download speed?
I have found I can get an InputStream from a ...
2
votes
4answers
334 views
selecting pulldown in htmlunit
I am using htmlunit in jython and am having trouble selecting a pull down link. The page I am going to has a table with other ajax links, and I can click on them and move around and it seems okay but ...
2
votes
4answers
169 views
how to compile code from svn into jar file?
I found HTMLUnit is useful for me,but the files are too old.
So I use svn co https://htmlunit.svn.sourceforge.net/svnroot/htmlunit htmlunit to check the code,But I don't know how to use them.
Is ...
2
votes
1answer
1k views
Tests using Webdriver with remote HTMLUnit having trouble logging into gmail
For some reason, after logging into a site like gmail, htmlunit is not working. It is not able to find html elements.
The following is a very simple ruby script that shows the problem, note it ...
2
votes
2answers
596 views
Call getPage from htmlunit WebClient whith javascript disabled and setTimeout set to 10000 wait forever
Im having problems whith Htmlunit, i disable javascript and set timeout to 10000 before call getpage, i hope an exception after timeout but htmlunit look wait forever.
After some search i realize ...
2
votes
1answer
678 views
How to use HtmlUnit in Java?
I'm trying to use HtmlUnit in Java to log into a website. First i enter the user name then password. After that i need to select an option from a dropdown box. entering the user and password seemed to ...
2
votes
1answer
700 views
HtmlUnit - Selecting Forms, CheckBoxes, TextFields, and Submit Buttons
I have been messing around with HtmlUnit for a little bit and particularly this website because it has quite a few features that I wanted to get used to. I have posted about it before but that was ...
2
votes
1answer
514 views
using celerity to login to saleforce.com on linux (w/ no gui), JS & VB errors
thanks in advance for the help!
BACKGROUND:
the script below logs into my salesforce.com account and tries to click a bunch of "download" links and save the resulting .zip export files locally.
i'm ...
2
votes
2answers
393 views
2
votes
1answer
252 views
Regarding installation of HtmlUnit Driver
i am trying to installing selenium-server-standalone-2.0b1.jar actually for that i have to set all jar files into the classpath of a java project. But i don't know that where all the jars under this ...
2
votes
1answer
983 views
Java HtmlUnit - can't login to wordpress
I'm trying to use HtmlUnit to login to my local wordpress website but it seems to have a cookies issue.
That's that begining of the code:
WebClient webClient = new WebClient();
HtmlPage loginPage = ...
2
votes
2answers
2k views
How can I test context menu functionality in a web app?
I'm playing with a grails app that has a contextmenu (on right-click).
The context menu is built using Chris Domigan's jquery contextmenu plugin.
While the contextmenus do actually work, I want to ...
2
votes
1answer
132 views
How to make 2 HtmlUnit's WebClients use same cookies?
If I create 2 WebClients in different threads, how do I make them use the same cookies?
2
votes
2answers
488 views
HtmlUnit doesn't load externally referenced javascript
I have run into a problem while trying to test a web application with HtmlUnit. Please bear in mind that I haven't used HtmlUnit very long so I might be missing something trivial.
For some reason ...
2
votes
2answers
412 views
How can I use SOCKS with HtmlUnit?
Is it possible to use HtmlUnit through SOCKS proxy? Could anyone please provide a code sample?
====
So I've dug through webclient sources, here's the best way I can think of:
Subclass ...
2
votes
1answer
536 views
Java: HtmlUnit crashes upon JavaScript error
Occasionally HtmlUnit stumbles upon a JavaScript error so grave it brings down the entire application.
Here's the long stacktrace it spits out: http://pastie.org/806625
I have already set the ...
2
votes
1answer
2k views
Problem in HtmlUnit API for Java (Headless Browser)?
I am using HtmlUnit headless browser to browse this webpage (you can see the webpage to have a better understanding of the problem).
I have set the select's value to "1"
by the following commands
...
2
votes
1answer
2k views
Download a non html file with HtmlUnit
I'm writing a JUnit test that involves the downloading of a file from the web app. How do I do that with HtmlUnit?