We have an application which scrapes information from websites and
aggregates them. As of now, we use the IE 6 browser to achieve this.
The browser control is written in C++ and the business logic in Java.
We use a JAVA-COM bridge to talk to IE COM objects. We plan to
replace
IE 6 with Chrome. In order to achieve this we would like to know how
we could use Chrome as a browser control. Specifically we are looking
at the following details
1. Is there some documentation and sample code on how to host chrome
as a browser control
2. Is there any available data on how many websites of Financial
Institutions/Banks work without any issues on Chrome.
--Chromium Developers mailing list: chromi...@chromium.org
View archives, change email options, or unsubscribe:http://groups.google.com/a/chromium.org/group/chromium-dev
You may be interested in WebDriver (Selenium):
http://code.google.com/p/selenium/ - it has a nice Java wrapper API
around actions in Chrome, a sample application is available at
http://code.google.com/p/selenium/wiki/GettingStarted
--
1. Events coming from the browser - NavigateComplete, DocumentComplete et al
2. Traversal and Operations on the DOM
3. Navigations on the Page - click, get et al
4. Cookie Access
5. Message Box and Internet Error Dialog Handling
I went through CEF and found it interesting. The interactions with the browser inside our application could be divided into the following
1. Events coming from the browser - NavigateComplete, DocumentComplete et al
2. Traversal and Operations on the DOM
3. Navigations on the Page - click, get et al
4. Cookie Access
5. Message Box and Internet Error Dialog Handling
After going through the documentation and the source for the client code I guess we only have support for 1 and 3 above. I wanted to check if we can use CEF to access the DOM and for operations 4 and 5.
Regards