DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports Events Over 2 million developers have joined DZone. Join Today! Thanks for visiting DZone today,
Edit Profile Manage Email Subscriptions Moderation Admin Console How to Post to DZone Article Submission Guidelines
View Profile
Sign Out
Refcards
Trend Reports
Events
Zones
Culture and Methodologies Agile Career Development Methodologies Team Management
Data Engineering AI/ML Big Data Data Databases IoT
Software Design and Architecture Cloud Architecture Containers Integration Microservices Performance Security
Coding Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Partner Zones AWS Cloud
by AWS Developer Relations
Culture and Methodologies
Agile Career Development Methodologies Team Management
Data Engineering
AI/ML Big Data Data Databases IoT
Software Design and Architecture
Cloud Architecture Containers Integration Microservices Performance Security
Coding
Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance
Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Partner Zones
AWS Cloud
by AWS Developer Relations
Building Scalable Real-Time Apps with AstraDB and Vaadin
Register Now

Trending

  • Building a Flask Web Application With Docker: A Step-by-Step Guide
  • Why You Should Consider Using React Router V6: An Overview of Changes
  • Introduction To Git
  • Authorization: Get It Done Right, Get It Done Early

Trending

  • Building a Flask Web Application With Docker: A Step-by-Step Guide
  • Why You Should Consider Using React Router V6: An Overview of Changes
  • Introduction To Git
  • Authorization: Get It Done Right, Get It Done Early
  1. DZone
  2. Data Engineering
  3. Data
  4. The Simple Way to Parse JSON Responses Using Groovy and Katalon Studio

The Simple Way to Parse JSON Responses Using Groovy and Katalon Studio

Many people have asked how to retrieve information from JSON responses and parse the JSON format in Katalon Studio. Check out this post to learn more!

Marek Melocik user avatar by
Marek Melocik
·
Sep. 13, 18 · Tutorial
Like (5)
Save
Tweet
Share
165.23K Views

Join the DZone community and get the full member experience.

Join For Free

Many people in the Katalon forum have asked about retrieving information from JSON responses and parsing the JSON format in the Katalon Studio. In this post, I will show a simple way on how to do so. Let's get started.

JSON Response Example

Suppose we have the following JSON response, and we want to parse and retrieve its data:

{"menu": {
"id": "file",
"tools": {
"actions": [
{"id": "new", "title": "New file"},
{"id": "open", "title": "Open File"},
{"id": "close", "title": "Close File"}
],
"errors": []
}}}


JsonSlurper

We use this Groovy helper class to parse JSON strings. We need to create a new instance of JsonSlurper and call the JsonSlurper.parseText method. Here is the sample code:

import groovy.json.JsonSlurper

String jsonString = '''{"menu": {
"id": "file",
"tools": {
"actions": [
{"id": "new", "title": "New File"},
{"id": "open", "title": "Open File"},
{"id": "close", "title": "Close File"}
],
"errors": []
}}}'''

JsonSlurper slurper = new JsonSlurper()
Map parsedJson = slurper.parseText(jsonString)


The parsed JSON response is now stored in a variable called parsedJson. In our case, it is the Map data structure, but sometimes it may be something else.

JsonSlurper also provides a couple of JsonSlurper overloading methods, which can be used if your JSON input is File , Reader , InputStream , or a URL other than String. For further information, please refer to the JsonSlurper documentation.

Get a Key Value

Let's say you want to get a value of id from the JSON response above. JSON is a structured document, so you can get any element using its absolute path. Check out this example:

String idValue = parsedJson.menu.id

String idValue2 = parsedJson.get("menu").get("id")


As you can see, there are two ways to get it. One is to access Map objects using the dot notation (.). The other is to use get methods from Map , List  , and Set  as you do in Java.

Basically, the parsedJson variable is a type of Then. To get the inner Map, you call parsedJson.  menu is the String key. This method returns the inner Map on which you can call other get methods until you reach your key.

Verify if a Key Is Present in JSON

If you want to verify if a selected key is present in a JSON response, you can use the similar code as below:

import com.kms.katalon.core.util.KeywordUtil

String getSelectedKey = parsedJson.menu.id

if(getSelectedKey == null) {
KeywordUtil.markFailed("Key is not present")
}


It is a simple check for the null — if the given key is not found, null is returned. But, there is one special case when this code won’t work, that is, if key “id” has value null in your JSON. For such cases, you should use more robust code:

boolean isKeyPresent = parsedJson.get("menu").keySet().contains("id")

if (!isKeyPresent) {
KeywordUtil.markFailed("Key is not present")
}


You get all keys from the "menu" object and then check if it contains the key you are looking for.

Get an Array Element

Your JSON response may also contain arrays. Like any array in Java or Groovy, you can access an array element using  arrayName[index].

For example, we can get the "title" value of the first object in the "actions" array as below

String idValue = parsedJson.menu.tools.actions[0].title

String idValue2 = parsedJson.get("menu").get("tools").get("actions").get(0).get("title")


In this example, we access the item with the index of 0, the first item in the array (the index is zero-based).

Get an Array Element Based on Some Condition

A more usual case is when you want to get the exact array element based on some specific condition. For example, you get the "title" value of an object whose "id" is "Open." You can do using the following:

def array1 = parsedJson.menu.tools.actions

String onlickValue1 = ""

for(def member : array1) {
      if(member.id == 'Open') {
      onlickValue1 = member.title
      break
      }
}


I used the for-each loop in this case. This loop checks every item in the array until the condition is met. If so,  onlickValue1 is assigned to the item's title.

JSON Data Types

The JSON format supports a few data types, such as String, number, Boolean, and null . If you are not sure what the data type is, you can just use the keyword def.

def myVar = ‘get value from json here’.


A rule of thumb is that a String value is enclosed in quotes, numbers unquoted (floating point may be present as well), and Boolean. But, initializing a variable using def is always a good choice when you are not sure about its type.

Conclusion

This tutorial offers a few basic best practices for working with JSON strings in Katalon Studio. JSON is the most common format returned from API/Web Services. When you perform API testing, you likely have to deal with JSON responses. Hopefully, these practices are useful for your API testing!

JSON Katalon Studio Groovy (programming language) Data Types Data structure

Published at DZone with permission of Marek Melocik. See the original article here.

Opinions expressed by DZone contributors are their own.

Trending

  • Building a Flask Web Application With Docker: A Step-by-Step Guide
  • Why You Should Consider Using React Router V6: An Overview of Changes
  • Introduction To Git
  • Authorization: Get It Done Right, Get It Done Early

Comments

Partner Resources

X

ABOUT US

  • About DZone
  • Send feedback
  • Careers
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 600 Park Offices Drive
  • Suite 300
  • Durham, NC 27709
  • support@dzone.com

Let's be friends: