-
You didn't provide enough details, but in principle you should be able to look at the DOM generated by the Javascript code (if it runs as intended), look up the input fields, change them, and submit the form.
2009-09-17 19:46:10 UTC in Lobo - Java Web Browser
-
Right, it doesn't render them at the moment. The ImgControl class would need to get modified a bit.
2009-09-11 14:12:25 UTC in Lobo - Java Web Browser
-
I think it depends on what you're trying to call. If you can get a hold of the Javascript object, it should be easy to call any function on it. See the Rhino documentation.
2009-09-11 14:11:03 UTC in Lobo - Java Web Browser
-
It should run on any JavaVM, although I've only tried it in Windows and Linux. Some things like the Open button in the download dialog will not work on all platforms.
2009-09-11 14:09:07 UTC in Lobo - Java Web Browser
-
Getting the position of inline elements is trickier. There's prior discussion in this thread:
https://sourceforge.net/forum/message.php?msg_id=4355963.
2009-09-11 14:07:52 UTC in Lobo - Java Web Browser
-
There's no plugin for PDF at the moment, but it would probably not be difficult to build one.
2009-08-08 14:17:21 UTC in Lobo - Java Web Browser
-
That's a bug. I believe there's a report on this already.
2009-08-08 14:16:36 UTC in Lobo - Java Web Browser
-
There's no list of all supported features. You basically have to look in the source for now.
2009-08-08 14:12:58 UTC in Lobo - Java Web Browser
-
There's a FramePanel and BrowserPanel method that might be useful to you: getComponentContent(). There are also listeners you can use. Here's an example that creates a combo box with links from pages you visit:
import java.awt.event.ActionEvent;
import java.awt.event.WindowEvent;
import java.util.Locale;
import java.util.logging.Level;
import java.util.logging.Logger;
import...
2009-08-08 14:10:15 UTC in Lobo - Java Web Browser
-
I'm not sure I follow that. Are you saying you don't want it to open a new window with _blank hyperlinks?
There's might be a way, by calling WindowFactoryImpl.setWindowFactory().
2009-07-16 20:58:18 UTC in Lobo - Java Web Browser