Quick guide for testers
This guide shows you the basic steps to automated testing in Katalon Studio and helps you get familiar with some of Katalon Studio basic functions.
Requirements
- You have created a Katalon account.
- You have downloaded Katalon Studio. You can download Katalon Studio from the website: Katalon.
#1 Activate Katalon Studio
You can start using Katalon Studio after activating. Follow these steps:
Useful tips to get started
Katalon Studio provides in-app onboarding guides and sample projects to help you get familiar with Katalon Studio capabilities.
Onboarding guide
- Katalon Studio version 7.8.0 onwards.
When you first open a project in Katalon Studio, you might see the Quickstart guide page. In the onboarding guide, Katalon Studio shows you how to:
1. Create and run your first test
2. Plan your test with a Test Suite
- WebUI
- Mobile
- API
- Desktop
- BDD (from version 8.4.0 onwards)
Learn more about onboarding guide and tutorials in Katalon Studio: Quickstart Guide.
Sample projects
Katalon Studio provides sample projects for each supported testing types. You can open those sample projects in Katalon Studio.
When you open Katalon Studio, you can select your preferred testing type from the Sample Projects list in the Test Explorer section.
Alternatively, you can go to File > New Sample Project and select a sample project.
For more details on Katalon Studio sample projects, see: Sample projects overview.
#2 Create your first test project
#3 Create your first test case
The application under test (AUT) is the CURA Healthcare Service demo website: https://katalon-demo-cura.herokuapp.com/
. We create a test to verify the successful login to the demo website. The basic steps are:
- Open the AUT in a browser.
- Click Make Appointment.
- Enter username and password to sign in.
- Click Login.
- Verify whether the Make appointment heading appears after the successful login.
- Close the application.
The test is successful if we successfully sign in the CURA Healthcare Service demo website.
You can clone the sample project here: Healthcare sample.
#4 Review your recorded test case
After each recording, you can review the recorded actions and the generated test objects. This section helps you familiarize with Katalon Studio interface and explore the connection between the recorded actions and the object repository.
The Katalon Studio user interface
After saving your recording, Katalon Studio opens the recorded test case in the editor view. Below are places you can interact with its associated test artifacts.
Tests Explorer: The Tests Explorer displays all folders, references, and files associated with the opened test project.
After saving your recording, a new test case and the captured test objects are located in the Test Cases and Object Repository folder respectively.
The test case editor displays the test case steps. You can add, edit, move or remove steps in a test case in different editing modes: manual or script.
You can also add variables and additional information for the test case. To learn more about the tabs in the editor view, see: Toolbars and views.The output section: Here displays the problems and errors before and during the test execution for troubleshooting.
Recorded actions
Action #1 and #2: Open the browser and navigate to the website under test.
Action #3: Click Make Appointment button.
Action #4 and #5: Click the username text box and input the
John Doe
username.Action #6 and #7: Click the password text box and input the password. When you enter the Password field, Web Recorder Utility uses the
Set Encrypted Text
keyword automatically. This helps encrypt the input value to ensure security.Action #8: Click Login.
Action #9: Verify the Make Appointment heading in the successful login page.
Action #10: Close browser.
- If you did not follow the recording instructions precisely, there may be extra recorded actions. If so, identify actions which do not belong to the intended test and delete them.
Test Objects
The actions listed above controls the UI elements in the application under test (AUT). These UI elements are represented by test objects in the Tests Explorer > Object Repository.
Double-click to open a test object. By default, these test objects are detected by XPath. Once a test object is captured using Spy/Recorder, a set of XPath locators is generated. The first value is the object default XPath locator. You can view, edit, or delete these test objects.
The following picture explains the captured test objects from the recorded test case:
1. a_Make Appointment: This test object represents the Make Appointment button.
2. button_Login: This test object represents the Login button.
3. h2_Make Appointment: This test object represents the Make Appointment heading.
4. input_Password_password: This test object represents the Password text box.
5. input_Username_username: This test object represents the Username text box.
The link between actions and objects repository
Actions that control UI elements, such as clicking a button, are automatically linked to the corresponding test object. In the manual mode of the test case editor view, you can see the test objects and the actions are in the same row.
Actions that don't control UI elements, such as opening a browser, aren't linked to test objects. The following pictures explains the relationship of actions and test objects in our recording.
1. Item column: This lists the actions that control the test objects. Here, the Set Text action inputs John Doe
into the Username text box.
2. Object column: This contains the test objects corresponding with the actions.
3. Input column: This specifies the data that the action should input, for example: the text to fill in a text box, the delay time to open a browser.
Playback
After a recording, you can also playback to recheck your test case. This helps prevent errors in your test scripts. To do so, open the test case you want to playback. From the main toolbar, click Run.
Katalon Studio will execute the chosen test case with the recorded steps accordingly.
#5 Run your first test
Run your test with Katalon Runtime Engine (KRE) using command-line mode execution. To learn more about executing tests with KRE, see Command-Line Syntax in Katalon Runtime Engine
- Run your test with Katalon TestCloud on standard browsers and operating systems on the cloud. To learn more about executing tests with Katalon TestCloud, see Conclusion
When the test run finishes, Katalon Studio automatically generates test reports.
#6 View test reports
Basic reports in Katalon Studio
Advanced reports in Katalon TestOps
View basic reports in Katalon Studio
Once a test suite finishes, you can view the latest test results in the Result tab of the test suite editor. This tab contains all information such as: test environment, total run test case, each test case result.
You can also view each test case log to identify the failed steps for quick troubleshooting by clicking Show Test Case Details.
Katalon Studio generates a folder corresponding to each test run in the Reports folder.
View advanced reports in Katalon TestOps
- You have enabled Katalon TestOps integration in Katalon Studio.
To view the test run results in TestOps, in the Tests Explorer panel, click TestOps > Test Runs.
You can view a summary of your test executions here. It might take a few minute to load the latest test execution. You can also click Refresh to fetch the latest data.
Click a test run ID to view the test run in Katalon TestOps.
Conclusion
Congratulations! You've just completed your first automated software test with Katalon Studio.
This is just a start! There are so much more to explore in Katalon Studio. You can learn more about:
BDD testing in Katalon Studio. See: BDD Testing Framework (Cucumber integration) overview.
API testing in Katalon Studio. See: Create your first API test with Katalon Studio.
Mobile testing in Katalon Studio. See: Introduction to Mobile Recorder in Katalon Studio.
Data-driven testing in Katalon Studio. See: Data-driven testing with Katalon Studio.