Any possibility slow down the typing speed

Is there any possibility to type slowly. By Katalon studio typing very speed and there is plugging to validate the input. because of the plugin and speed of the typing, some characters missing. so I need to type slowly. any possibility

yes, you can write your own Keyword.
principle is to split string to characters and sent them 1 by 1:

String text = "Hello from Hellno"for(i = 0; i< text.length(); i++){	println "Send : "+ (new Date().getTime())+" char "+ text.charAt(i)	Thread.sleep(500)}

keywork can look like this:

/** * Slow down typing */@Keyworddef typeTextSlowly(TestObject to, String text, int slowByMs){	for(int i = 0; i < text.length(); i++){		WebUI.sendKeys(to, text.charAt(i))		Thread.sleep(slowByMs)	}}

Great idea. let me try. thanks for your time.

hope it helps