i'm using the selenium API for a java program (http://selenium.googlecode.com/svn/trunk/docs/api/java/index.html).
When i use the driver.get(completeUrl); method, selenium opens a new firefox window with the site i refer in "completeUrl".
Now, there're many web sites that have videos, music and other heavy content i don't want to download while using selenium with firefox. That because the information i need is included in the first KB of a site.
How can i don't lose time downloading all this content? There's a method of Selenium API that allows me to stop the downloading of a web page in Firefox after some time or KB? Or can it be done with some java method?
Please Help.