Monday, April 13, 2015

Coded UI Test : How to automate a web 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 and web page. Here I will explain how we can automate a web application using record and playback approach.

Our example application is Microsoft’s search engine “bing” (https://www.bing.com/).

Step One : Writing Test cases

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

Test Case : Verify search functionality of Bing Search engine. 

Steps:

  • Navigate to https://www.bing.com/
  • Enter the search text “Coded UI Test” in the search text box. 
  • Click on Search 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 “BingUITest”.
  • 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.

image

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

    • Enter the search text “Coded UI Test” in the search text box. 

    • Click on Search button

    image

        • Now stop the recording by clicking stop button and do not close the browser window.

        image

        • Click on Generate UI code button

        image

        • Enter Method Name “SearchByBing” 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 Search result item.

        image

        • Add Assertions window is displayed

        image

        • Scroll down to the Property Column “InnerText” 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 “Verifying Code by Using UI Automation - MSDN - Microsoft” 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

        That’s all for now….

        Happy Coded UI testing!!!

        No comments:

        Post a Comment

        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...