Tagged Questions

The Cobra toolkit (http://lobobrowser.org/cobra.jsp) is a pure Java HTML parser and rendering engine with support for CCS2 and Javascript.

learn more… | top users | synonyms

4
votes
1answer
381 views

Java HTML rendering using Cobra

I am currently using Cobra: Java HTML Renderer & Parser to render an HTML page that is dynamically generated based on user choices in a java app. In my app the user has a choice of hundreds of ...
1
vote
1answer
841 views

Lobo Cobra HtmlPanel does not update GUI after JavaScript action

HI, I started implementing a HTML Browser in Swing. I want to use the Lobo Cobra toolkit because this toolkit inclused a renderer and parser for CSS and JavaScript. The pages are looking very nice ...
0
votes
0answers
87 views

use Cobra get javascript modify dom value

i use Cobra parsing html to w3c dom and i had saw javascript were process but when i get value from the dom element it still the old value, how comes?? javascript process log 2011/5/26 11:52:07 ...
0
votes
1answer
81 views

HTML of a parsed page

i am using Cobra parsing engine and I wish to get HTML code of an already parsed page (e.g. after javascripts executions). Is it possible to do? Cobra may be replaced with another open-source java web ...
0
votes
4answers
1k views

Java/Swing offscreen rendering (Cobra HTMLPanel -> BufferedImage) Problem: Component doesn't finish redrawing first

I'm trying to render the contents of a the Java/Swing Cobra HTML renderer to an offscreen BufferedImage, for use elsewhere in my app: slideViewPanel.setDocument(document, rendererContext); ...
0
votes
1answer
304 views

How to access CSS properties for a DOM node using the Cobra/Lobo HTML renderer

I am trying figure out how to access CSS properties for a DOM node (in this example <img> nodes) using the Cobra/Lobo toolkit. What I have at the moment is: UserAgentContext uacontext = new ...
0
votes
4answers
636 views

Need some help with XPath expression. One works, the other doesn't

I'm using the COBRA HTMLParser but haven't had luck parsing one particular tag. Here's the source: <li id="eta" class="hentry"> <span class="body"> <span class="actions"> ...
-3
votes
0answers
61 views

“class expected” exception

I'm trying to work with the Cobra engine which is a Java HTML parser and renderer. This is my code: public static void main(String[] args) throws Exception { TestCobra mt = new TestCobra(); ...