**OS **(Windows 10? OSX Sierra?):
Windows 7 Professional Service Pack 1
Katalon Studio Version (4.7?, 5.0.1.2?)
5.2.0 Build 1
## Katalon Studio logs:
No exception message in log file
## Steps to reproduce -
1. Add new keyword
package test
//default import…
public class MyKeyword {
@Keyword
def foo(TestObject bar1, TestObject bar2) {
WebUI.click(bar1)
WebUI.click(bar2)
}
}
2. In Test Cases > “Script” tab, type
CustomKeywords.‘test.MyKeyword.foo’(findTestObject(‘Hello World’), findTestObject(findTestObject(‘Hello World’)))
## Expected Behavior -
In “Manual” tab, should be should input parameter like:
“bar1”: Hello World
“bar2”: Hello World
## Actual Behavior -
In “Manual” tab, only has
“Object”: Hello World
## Screenshots / Videos
Keyword
Test Case > “Script” tab:
Test Case > “Manual” tab:
