Questions tagged [katalon]

79 questions
0
votes
0 answers

How to compare 2 columns in an Excel using selenium

I need to compare the 2 columns in the excel using the selenium java but excel contains more than 4k records so its taking more than a hour to compare. Is there any faster way of doing this. I tried, Method…
VIMAL
  • 1
0
votes
2 answers

I need to tap on the mobile keyboard from a generated number

on Katalon I made this custom method : def void enterPhoneNumber(a){ a = Integer.valueOf(a) def ref = "" int max = a.length() for(int i=0; i< max; i++){ ref = a.substring(i, i + 1) switch (ref) { case…
0
votes
1 answer

How to deploy katalon studio project

I wonder how to deploy/build a project made with Katalon Studio (.bat/.exe/.dmg for example) for the users who don't have installed Katalon Studio on their system.
Archit
  • 3
  • 1
0
votes
0 answers

It is possible to create a custom marker view in Katalon studio?

I’m currently working on a katalon Studio plugin that receives a list of items (after processing) that I want to display on a “custom marker view” (similar to the problems view) it is that possible in Katalon studio 8.1.0?? Problems marker view If…
Victor
  • 1
0
votes
1 answer

Unable to load webdriver in Katalon - "Could not open/create prefs root node"

Aug 17, 2021 12:50:57 PM java.util.prefs.WindowsPreferences [INFO] Using WebDriverManager to resolve chrome WARNING: Could not open/create prefs root node Software\JavaSoft\Prefs at root 0x80000002. Windows RegCreateKeyEx(...) returned error code…
0
votes
1 answer

How can I save part of URL using Katalon?

I would like to save part of the URL and I don't really know how to do it. I would like to save the part of the URL in a variable. Anyone has an idea how to do it?
Hagai
  • 11
  • 4
0
votes
1 answer

Get Time to first byte from API Groovy

I am writing a script to get TTFB for an URL. This getResponseCode method gives me status code for the URL. What method or formula can I use to get TTFB after connection is established? HttpURLConnection connection try { URL…
Surbhi
  • 3
  • 3
0
votes
0 answers

Groovy, find object by span or div

I have script in Groovy which is filling input fields in form in web app. It is working good but I have combobox where my script must Enter text from excel file - and it is working Click on span or div with text, which appears below input field…
matsi
  • 27
  • 5
0
votes
1 answer

How to dynamically find web element by XPath in Selenium using Katalon

driver.findElement(By.xpath("//*[contains(text(),'"+ ProjectName +"')]")).click(); I tried to use this code to find web element dynamically, but when I tried to call it on my test case seems that it cannot have an input value since this code is a…
0
votes
1 answer

How to verify if Implicit wait is working in Katalon Studio

public void verifySeleniumTitle() { WebUI.openBrowser('https://www.google.com') driver = DriverFactory.getWebDriver(); driver.manage().window().maximize(); driver.get("https://www.google.com"); // Specify implicit wait…
0
votes
0 answers

Katalon can't click object which exist

I use Katalon for web testing for some time and I have problem now: I have Test Suite which uses many objects from Object Repository. My problematic object is called "Tabs - Adres" and it uses senchatest mark to detect clickable object on web…
matsi
  • 27
  • 5
0
votes
0 answers

katalon recorder can't read date picker upon running

After recording the module,Katalon recorder can't read the date picker upon playback. check the screenshot: datepicker how can i handle this stuff?
Mark30
  • 1
  • 1
0
votes
3 answers

How do I Update ChromeDriver for Katalon Local Agent

I need to update the ChromeDriver that my Katalon Local Agent uses. (Katalon Local Agent is running on a Windows 10 VM.) I would like to configure Katalon Agent to do it automatically. But I would settle on a way to update it manually.
Brandon Dudek
  • 849
  • 1
  • 8
  • 18
0
votes
0 answers

Could not find method compile() for arguments [com.jcraft:jsch:0.1.53]

I am trying to build the katalon project but constantly getting this error from Gradle. Command: gradle katalonCopyDependencies Error: Could not find method compile() for arguments [com.jcraft:jsch:0.1.53] on object of type…
satish
  • 1
  • 1
0
votes
1 answer

Call a method from default package in katalon

I have created a default class file for handling the xpath under default package, public class TestObjectHelper { /* * TestObjectHelper will help the user to handle dynamic xpath */ public static TestObject…
user14435933