Click here to Skip to main content
15,867,141 members
Articles / Web Development / HTML
Article

Automating Internet Explorer

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

Introduction

I attended an ASP.NET Users Group meeting and saw a presentation given by Demetrie Gerodimos. He is an Architect at Dell and was giving a presentation on Test Driven Development. An interesting point of his presentation for me was when he explained how they execute their tests. A discussion with him after the meeting revealed that they were automating Internet Explorer to test their ASPX pages.

After spending some time researching how easily you can automate Internet Explorer in C# (with the help of some URLs given to me by Demetrie), I began writing my own version of IEDriver. The URLs I looked at had a basic example of how to instruct IE to perform various actions. Over the course of the last year, I have enhanced my IEDriver class to handle other types of interactions with IE that I have required. While this is by no means a complete automation class, I believe it performs many of the common functions needed when writing automated tests.

Background

The basic idea here is that we will use Interop services to invoke methods on the COM interfaces built into Internet Explorer. I have written this article because the documentation available on these interfaces is scarce at best. I have spent a lot of time researching on the web and doing trial and error experimentation with these interfaces to produce much of this IEDriver class.

Using the code

The gist of it is a class called IEDriver. This class' constructor will create a new IEXPLORE.EXE process and attach to it. From then on, the methods on the IEDriver class can be used to simulate a user using his browser. While I have not implemented every type of interaction you could have with your browser, I have implemented most of the routines that I have needed to write automated tests for my product.

I have tried to hide the inner workings of the driver from the user of the class. You will notice that there are ClickXXX methods and GetXXX values that will deal with all the COM interfaces to perform the actions necessary or return the value you are interested in.

Here is an example of how easy this class is to use. This example will simply navigate to Google and search for "Automating Internet Explorer":

C#
IEDriver driver = new IEDriver();
driver.Navigate("http://www.google.com");
driver.SetInputStringValue("q", "Internet Explorer Automation");
driver.ClickButton("btnG");

In this example, "q" is the name of the input control and "btnG" is the name of the button control on the Google page. Preferably, you will have ID attributes on your HTML elements, but if there is no ID attribute, the driver will find the element with a name attribute.

In order to use this code, you will need to do a couple of things. First of all, you will need to add a couple of references to your project. To do this, right click on References and click Add Reference:

Right click references and select Add Reference

When the Add Reference dialog comes up, first select the .NET tab. Scroll down to the Microsoft.MSHtml object, and click the Select button.

Select the Microsoft.mshtml .Net object

Next, click on the COM tab. Scroll down to the Microsoft Internet Controls object and click the Select button.

Select the Microsoft Internet Controls COM object

Now click on OK. This will add the necessary references to your project that will allow IEDriver class to make the necessary calls to automate IE.

Once you have added the appropriate references to your project, just include the IEDriver in your project. Now, all you have to do is import the IEAutomation namespace into your class and you can begin writing automated tests using IE.

Points of Interest

One thing to keep in mind. The documentation on this stuff is not very good so if you need to enhance IEDriver to support a feature that it currently doesn't, your best bet is probably to use your intellisense to invoke a method that you think might do what you want, and assign the variable to some temporary local variable. Then, fire up your debugger and use the watch window to find out all you can about the objects returned.

Tips

While writing my own automated tests, I have discovered that it is useful to extend the IEDriver class and add methods that do tasks that I might perform quite often so that I can use the intellisense and the compiler to eliminate the possibility of mistyping control names. For example:

C#
class MyIEDriver : IEDriver {
    public void ClickSave() {
        ClickButton("SaveButton");
    }
}

This gives you compiler checking for things that may normally only be caught at runtime.

History

  • 2-23-2005: Initial release.

Other Articles

Writing Automated Tests With NUnit and IE.

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

 
QuestionSystem.BadImageFormatException Error Pin
Member 1301937023-Feb-17 3:25
Member 1301937023-Feb-17 3:25 
Questionhow to access different options on tool bar like bing search Pin
deepakraut14-Mar-14 6:21
deepakraut14-Mar-14 6:21 
QuestionI have two questions. Can I pass a “page-down”? Can I do a “Save As”. Pin
rschnieber28-May-13 18:42
rschnieber28-May-13 18:42 
QuestionSetting Zoom Pin
closl24-Sep-12 8:46
closl24-Sep-12 8:46 
SuggestionThread.Sleep(500); error Pin
donneverdies20-Jul-12 23:16
donneverdies20-Jul-12 23:16 
this causing error because IE takes different time to load up i mean if IE is already open it will take less time or if IE is not open it will take long time.. so no fix time tht how much time thread should sleep so i got a solution for it
just change..

Process m_Proc = Process.Start("IExplore.exe"); to
Process m_Proc = Process.Start("IExplore.exe", "-nomerge www.google.com");
and Thread.Sleep(500) to Thread.Sleep(5000)

so now it will open new IE in new browser and will wait 5 sec to get it complete ...

it helped me hope it helps all... Smile | :)
Questioninvalid cast exception Pin
mani224628-Apr-12 2:35
mani224628-Apr-12 2:35 
GeneralThank you Pin
Ravi Vooda10-Apr-12 1:27
Ravi Vooda10-Apr-12 1:27 
Questionhow to click button if button has no ID and no Name and just value Pin
MustangU12-Nov-10 2:48
MustangU12-Nov-10 2:48 
GeneralInternet Explorer 8 resolution Pin
prosh0t13-May-10 7:55
prosh0t13-May-10 7:55 
GeneralRe: Internet Explorer 8 resolution Pin
martho21-Jul-10 5:39
martho21-Jul-10 5:39 
GeneralSmall Modification Pin
Ashrafur Rahaman2-Mar-10 7:19
Ashrafur Rahaman2-Mar-10 7:19 
GeneralGreat!! Thanks Pin
Ashrafur Rahaman1-Mar-10 9:07
Ashrafur Rahaman1-Mar-10 9:07 
GeneralSelectively Disabling Content Pin
Kevin Yochum21-Feb-10 15:40
Kevin Yochum21-Feb-10 15:40 
GeneralProblem with running in IE 7+ Pin
Hessam Abbasi10-Apr-09 0:19
Hessam Abbasi10-Apr-09 0:19 
QuestionRe: Problem with running in IE 7+ Pin
kymo Wang3-Jun-09 16:50
kymo Wang3-Jun-09 16:50 
AnswerRe: Problem with running in IE 7+ Pin
bigheart00117-Jan-10 18:03
bigheart00117-Jan-10 18:03 
GeneralRe: Problem with running in IE 7+ Pin
daihugo26-Mar-10 16:08
daihugo26-Mar-10 16:08 
GeneralRe: Problem with running in IE 7+ Pin
Bassem Zeft28-Jun-10 6:33
Bassem Zeft28-Jun-10 6:33 
GeneralGetElementByValueOnce Pin
Noname_vn1-Dec-08 3:10
Noname_vn1-Dec-08 3:10 
QuestionExcellent - can the update for class constructor as previously posted be added to the source code? Pin
Member 47604192-May-08 13:04
Member 47604192-May-08 13:04 
GeneralIE7 support Pin
Dvir13-Feb-08 4:09
Dvir13-Feb-08 4:09 
GeneralCool! Pin
Dev1238-Jan-08 13:25
Dev1238-Jan-08 13:25 
AnswerRe: Cool! Pin
soptest14-May-08 9:10
soptest14-May-08 9:10 
Generalgreat Pin
ppcode12-Dec-07 22:38
ppcode12-Dec-07 22:38 
QuestionHow to autoprint Pin
Nguoi Lap Trinh22-Nov-07 18:40
Nguoi Lap Trinh22-Nov-07 18:40 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.