Tuesday, March 31, 2015

Coded UI Test : How to automate a windows application using Record and Playback approach

Now a days Microsoft Visual Studio Coded UI test is becoming popular as it is supporting basic windows UI object as well as WPF and Silverlight UI object. Coded UI test framework has its own search algorithm to search UI object from the window. Here I will explain how we can automate a basic windows application using record and playback approach.

Our example application is window’s default calculator application.

Step One : Writing Test cases

At first we write the test cases that we have to automate.

Test Case : Verify addition of two numbers in calculator application.

Steps:

  • Open the Calculator application.
  • Click on 7 (seven) button.
  • Click (+) plus button.
  • Click 3 (three) button.
  • Click (=) equals button.
  • Verify the result.

Step Two: Create a Coded UI test Project 

  • Open Visual Studio (In my case it is visual studio 2013)
  • Navigate to File>New>Project at File Menu.

SNAGHTML4ee51a7f

  • New Project window is displayed.

SNAGHTML4eefafc9

  • Select “Test” from left side Project Template category under visual C#.
  • Select “Coded UI Test Project”. Note that in my case .Net Framework 4.5.1 is selected.
  • Enter Project name as “CalculatorUITest”.
  • Select Location.
  • Enter solution name. In my case this is the same as project name.
  • Check “Create directory for solution” option
  • Click on Ok button

image

  • A new coded UI test project is created and Recorder window (Title : Generate Code for Coded UI test) is displayed.

      SNAGHTML4eff98f7

Step Three: Record the test case steps

There are two options of the Recorder window. 

  • Record actions, edit UI map or add assertions : This options is selected by default. Selecting this option will open the recording tool bar. New steps can be recorded and for verifying the result assertions can be added.
  • Use an existing action recording : This option is selected for existing action recording.

image

  • Select the first option “Record actions, edit UI map or add assertions”.
  • Click on Ok button.
  • Coded UI test builder window is displayed and click red color “Start Recording” button. Record will start.

image

  • Click on Calculator icon from taskbar and calculator application is started.
  • Click on 7 (seven) button
  • Click (+) plus button
  • Click 3 (three) button
  • Click (=) equals button

 image

  • Now stop the recording by clicking stop button and do not close the calculator application.

image

  • Click on Generate UI code button

image

  • Enter Method Name “AddTwoNumber” and click “Add and Generate” button at Generate Code window.

image

  • Now Coded UI Test will generate related code for the recorded steps and displayed the method name at Visual studio editor.

image

  • Now we need to verify the result. There is a button image  to drag and drop on a UI control in Coded UI Test builder window.
image

  • When move mouse pointer on this button an icon is displayed. Now drag the Crosshair icon and drop it to the Calculator Result box.

image

  • Add Assertions window is displayed

image 

  • Scroll down to the Property Column “DisplayText” and select the property.

image

  • Click on Add Assertion button.

 image

  • A window is displayed for entering expected result. Select “AreEqual” from Comparator Combo box. Enter comparison value as “10” and Message on Assertion Failure as “Invalid result.”.

image

  • Click on OK button.
  • Click on Generate UI code button

image

  • Enter Method Name “VerifyResult” and click “Add and Generate” button at Generate Code window.

image

  • A New method is created at CodedUITestMethod1().

image

  • Now recording is complete and close the coded UI Test builder window.

image

Step Four: Playback the test

  • Go to Build menu and click on Build Solution option.

image

  • Go to Test menu and click on Windows>Test Explorer.

image

  • In the Test Explorer, Test Name “CodedUITestMethod1” is displayed.

image 

  • Right click on the Test Name and click on “Run Selected Test”.

image

  • Test will run and Test result is displayed at the Test Explorer.

image

image

Here we see how we can record the test and run it. In my next post I will show how we can write the test script by using Hand coding and run it.

That’s all for now….

Happy Coded UI testing!!!

Cypress: How to handle browser-based authentication pop up dialog in Cypress

Five years ago I have written a blog on how to handle browser-based authentication for selenium webdriver.   Now it is for cypress. Cypress...