Unable to Record Infragistics control fields using Katalon Web Recorder

Please find the following infragistics control fields names , Which fields actions we performed are unable to record using katalon,

Also we have attached sample application link with infragisitics fields, which we are unable to cover using Recording.
Infragistics Application Link

Please find the Application flow and screen Name :
After launching the application , Click sample 1 screen from controls Sub Module which is present under infragistics control.

  1. WebDate Picker:

  1. WebNumeric Editor :

3.WebDate Time Editor:

Kindly provide the solution, how to handle this in web -Recorder. It will be more helpful to solve this major part During Automation Testing Recording.

I was able to do it with this:

WebUI.openBrowser(‘https://www.sierratec.com/efacilitydemo/sample.html’)

WebUI.waitForElementClickable(findTestObject(‘Sample1’), 10)

WebUI.click(findTestObject(‘Sample1’))

WebUI.waitForElementPresent(findTestObject(‘WebDate Picker input’), 3)

WebUI.click(findTestObject(‘WebDate Picker input’))

WebUI.sendKeys(findTestObject(‘WebDate Picker input’), ‘01/10/2019’)

WebUI.sendKeys(findTestObject(‘WebDate Picker input’), Keys.chord(Keys.ENTER))

Notice in the page that the WebDate Picker is in an Iframe.

Define a Parent Iframe Test Object as identified with id=“main”.

The WebDate Picker Test Object needs to be defined relative to the Parent IFrame.

image

Dear Harold_Owen,

Thanks for your suggestion.

We would like to confirm the above script generated by Katalon- web Recorder or manually created script.?

That script was written manually to help you troubleshoot the recorder. I do not know whether the recorder can accomplish this.

Dear Harold_Owen,

Thanks for your suggestion.