Web browser automation in .NET

  • Thread starter Thread starter Ludwig Wittgenstein
  • Start date Start date
L

Ludwig Wittgenstein

Hi, all.

Does anyone know of any .NET library that can do web automation? I
was trying to use SHDocVw myself but I'm having so much problems
capturing the events and getting document elements. Is there a library
that can do all this?


Thanks,
 
In .Net 2.0 there is a WebBrowser forms control that wraps the main
parts of SHDocVw - but not quite all. Would that do?

Marc
 
Hi, Marc.

Can it automated actions on the page loaded in it? like clicking
buttons, selecting from a drop-down menu...etc?

Thanks,
 
Yes; you can invoke all the same methods/properties that you could
through script (javascript etc) via the InvokeMember method, or you
can re-write the DOM completely.

Marc
 
Hi, all.

Does anyone know of any .NET library that can dowebautomation? I
was trying to use SHDocVw myself but I'm having so much problems
capturing the events and getting document elements. Is there a library
that can do all this?

Thanks,

You can try SWExplorerAutomation (SWEA) from http://webiussoft.com.
The program creates an automation API for any Web application
developed with HTML, DHTML or AJAX. The Web application becomes
programmatically accessible from any .NET language.
SWEA API provides access to Web application controls and content.
The API is generated using SWEA Visual Scene Designer. SWEA Visual
Scene Designer helps create programmable objects from Web page content.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top