A Sample Web Automation Test Project

Katalon
Katalon
Published in
5 min readOct 23, 2017

Starting a new automation project for a website can be complicated and requires a steep learning curve, especially to those who are new to automation testing. The following tutorial will help you ease that process using Katalon Studio.

Test Scenario

For this tutorial, we are using Katalon Studio to test the dummy web app (CURA) accessible athttp://demoaut.katalon.com. CURA is a simple health care service that allows patients to book appointments with doctors.

In this tutorial, we create a test case to test the following flow:

  • Login
  • Book an appointment
  • Check if the appointment is booked successfully
  • Logout

Get Started

  1. Create an automation testing project in Katalon Studio as below:

2. Create a test case, where all of your necessary test steps of the scenario will be written:

The newly created test case is generated in form of a Groovy language script file (also called test script) which can be viewed and edited in Katalon Studio by one of two view modes: Manual View and Script View.

3. Composing automation test case

Please refer to the Test Execution and Reports for detailed instructions to compose test steps in various modes using different utilities. For a starter, we recommend using the Record — Playback function to get familiar with the scripting process. Katalon Studio is capable of generating test steps quickly.

  • Click on the Record Toolbar button to open the Record dialog, then enter “http://demoaut.katalon.com” for the URL field and select Chrome on the dialog to start recording.
  • A new Chrome browser instance with the CURA website will be activated. Click on Make Appointment.
  • Enter “John Doe” for username and “ThisIsNotAPassword” for password on the login page.
  • On the Make Appointment page, fill in necessary appointment information and click on the Book Appointment button to book an appointment.
  • The Appointment Confirmation page will show up. Click the Logout button to complete the recorded session.
  • Switch back to Katalon Studio Record dialog and you can see all the actions and web elements recorded. Click on OK to finish the recording and generate necessary test steps and test scripts.
  • The recorded test scripts can be playback instantly. Click the Run button with a preferred browser to start running your test case.
  • The recorded test scripts should run smoothly, but you will notice the test fails at Step 14 (Click on “a_Logout” element) with the error message “Unable to click on object ‘Object Repository/Page CURA Healthcare Service (3)/a Logout’”. Don’t worry, this can be fixed using the following steps.

4. Complete your first test case

If you investigate to the failed message of the test execution, it includes the message “org.openqa.selenium.WebDriverException: unknown error: Element is not clickable at point”.

It happens because when the Side Menu of CURA website is open, the animation causes the Logout element to appear slowly and so Katalon Studio’s playback is unable to recognize it. To fix this issue, we need to include a Wait step right before the logout step using the keyword waitForElementClickable, use “a_Logout” element as the object and change the timeout input to 5 seconds.

Run the test case again, you will see the Log out button is found and the step passes.

5. Generate a report

To generate test reports, we need to have a test suite. A test suite in Katalon Studio is where you group test cases to run them together.

  • To create a test suite, click on the New toolbar button and select the New Test Suite item.
  • In the New Test Suite dialog, enter the required name and an optional description about your test suite, click OK to create a new test suite:
  • From the test suite UI, click the Add button and check the “Basic” test case then click OK to add the selected test case to the test suit.

Execute this test suite as we did with the test case by clicking on the Execution toolbar. After the execution, you will notice that a new report folder is generated. In this folder, each of the child items represents an execution with the name indicating the starting time of the execution. Click on the first report item to view. The report is shown as below:

The test report’s detail is shown as below (with “Show Test Case Details” selected)

For additional tutorials and guidelines please visit Katalon Studio documentation. If you have any question, feel free to join the Forum and chat with other users.

--

--

Katalon
Katalon

#Katalon, a powerful and free #automation solution for Web, API, Mobile and Desktop application testing. #Programming #SoftwareDevelopment #Testing