Click here to Skip to main content
15,891,529 members
Articles / Web Development / HTML

Automating Internet Explorer

Rate me:
Please Sign up or sign in to vote.
4.70/5 (41 votes)
24 Feb 20054 min read 396.5K   7.1K   109  
An article describing how to automate IE, mainly for testing purposes.
using System;
using IEAutomation;

namespace IEDriver {
	/// <summary>
	/// Summary description for Class1.
	/// </summary>
	class MainClass {
		/// <summary>
		/// The main entry point for the application.
		/// </summary>
		[STAThread]
		static void Main(string[] args) {
			IEDriverTest ieDriverTest = new IEDriverTest();
			ieDriverTest.TestGoogle();
		}
	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
United States United States
A developer for ScienceTRAX, LLC

Web: www.codeoutlaw.com

Comments and Discussions