Questions tagged [katalon-studio]

Katalon Studio is a desktop application for automation testing. Use this tag for issues related to Katalon Studio application. Katalon Studio supports scripting using groovy and Java, and integrates with several tools. Please use additional tags if your question is specific to groovy, Java, Git and/or other technologies integrated with Katalon-Studio.

Katalon Studio is a desktop application for automation testing (see ) of web applications, SOAP/REST web services, and mobile applications.

Main features:

  • Free and
  • Provides project templates for organizing test cases, object repository, and keywords
  • Fully supports Web, Android, iOS and API testing on all operating systems
  • Tool integration, easy to integrate with , , and with native plugins
  • Data-driven testing
  • Comprehensive reports generation
  • Scripting supports using and
  • Windows 10 application testing (from Version 7.0)

Online help:

Need help with Katalon Studio? Refer to their official tutorial or ask a question in katalon community

Related tags:

Reference:

787 questions
0
votes
2 answers

How Katalon Studio works with the JUnit, testNg?

My company has recently started to test the stable release through automation for which we are using the Katalon Studio as an automation tool. How Katalon Studio works with the JUnit, TestNG?
YaDav MaNish
  • 1,260
  • 2
  • 12
  • 20
-1
votes
2 answers

How to use regex expression in Katalon Studio?

I have a regex expression which checks for the valid date and timezone format but when I tried to use it in Katalon, I get unexpected errors about using the slases: ^\d\d([-/])\d\d\1\d{4} \d\d:\d\d [AP]M ET$ Here's an example of the regex that…
iDan
  • 25
  • 3
-1
votes
1 answer

How to retrieve link from email message using the Gmail plugin/GMail API for Java/Jakarta Mail API/...?

I am using Katalon Studio, and need to retrieve some sign-up link from test email inbox. I found some API/service to access the test email inbox, can get the message I need from it, and it's a string of what looks like HTML. I don't care about the…
Mike Warren
  • 3,796
  • 5
  • 47
  • 99
-1
votes
1 answer

Is there are way to upload one file in multiple (input) places on the web using Katalon studio

I have to upload one file in different places on the web using katalon I am using: 'Upload test-photo.png to input_browse' WebUI.uploadFile(findTestObject('input_browse'), 'D:\\test-photo.png' I have to upload the same file on below places 'Upload…
Akzy
  • 1,817
  • 1
  • 7
  • 19
-1
votes
1 answer

Regular expression to match exact string with with non-numeric characters and variable number

I have been struggling with this and would appreciate any help. I have a line of code that always looks like this: Thread.sleep(1000) Thread.sleep() is always a fixed sequence of characters, but the integer number inside is variable. How would I…
user3325294
  • 89
  • 2
  • 11
-1
votes
1 answer

Unable to find elements by tag

Hi I'm fairly new to web automation and I'm testing new things out. I'm having trouble getting the list of elements as shown in the picture. i have selected the Xpath of the highlighted code but still no success. WebDriver driver =…
-1
votes
2 answers

Not able to launch the app via using katalon studio, gets error like:

java.util.concurrent.ExecutionException: org.openqa.selenium.SessionNotCreatedException: Unable to create a new remote session. Please check the server log for more details. Original error: An unknown server-side error occurred while processing the…
-1
votes
1 answer

Does Katalon Studio works on Windows Server 2012 R2 standard?

Katalon Studio is not working on Windows Server 2012 R2 standard while installing Win App Driver for Desktop Application Automaton it states it is only supported for Windows 10, Windows Server 2016 or higher can anyone support for the same
-1
votes
2 answers

katalon studio open browser once in a while

This is my code. The username and password variable gets value from excel file. if i execute the code, opens a new browser for each every row ( in excel ). I'am searching for a command or else for open browse one time, at the…
-1
votes
1 answer

How can i convert below Katalon Custom Keyword in to Selenium

Need to Convert below Katalon code into selenium, May I Know what area needs to be Converted? package nasdaqKeyword import ... public class accesstoTable { private String table_date(String trid){ …
lahimadhe
  • 374
  • 2
  • 16
-1
votes
2 answers

Groovy scripting

I am working with API automation in groovy. I have created an HTTP post request. I got the response in json format as below: {"Response":"result","data":"234556667","status":"6"} Now I want to extract only the "data" which will be dynamic…
-1
votes
2 answers

Xcode 10.3 failing to run on iOS 13 iPhone 6s - This iPhone 6s is running iOS 13.1, which may not be supported by this version of Xcode version 10.3

Can somebody help me out to fix this issue. I have iPhone 6s [iOS: 13.1] and Xcode version 10.3 installed in my Mac book. Now I am unable to run the WebDriverAgent as it does not support the iOS version. So somebody who is using Xcode 11 or higher…
Revankar
  • 13
  • 2
-1
votes
1 answer

Could not find matching constructor for: java.util.ArrayList(java.awt.Dimension)

Unable to return ArrayList values to test case Error : Could not find matching constructor for: java.util.ArrayList(java.awt.Dimension) My code: Keyword: public ArrayList othersites() { String[] sits = new String[9]; …
lahimadhe
  • 374
  • 2
  • 16
-1
votes
2 answers

Is it possible to use MQ with Katalon?

I'm trying to find informations which explain how use IBM MQ with Katalon. However, I didn't found any informations about that... Do you know if it is possible? With a plugin? A custom Java/Groovy code? I hope that someone could give an answer to…
Royce
  • 1,557
  • 5
  • 19
  • 44
-1
votes
2 answers

Katalon - get the no of rows in excel

Create a Test data in the Data Files section, and get the values during the runtime of my test script, below is my code TestData data = findTestData('Advanced Search') data.changeSheet('RecordCount') for (int excelRow : (1..5)) { selectQuery0 =…
Prabu
  • 3,550
  • 9
  • 44
  • 85