.sendkeys option not coming

Hi , i am trying to enter – WebElement.sendkeys(’ abc’ )
in katalon but after pressing . > ctrl and space >send keys option not showing.
Pls suggest

Hi Niteshbola,

What do you mean about this?

Could you explain a little more?

Thanks.

Are you talking about the code intelligence?

i am trying to write selenium code in katalon IDE.
Tried the below code:

WebDriver driver = new ChromeDriver()
 
// this won't work and exception would be thrown
 
WebUI.click(testObject)
 
DriverFactory.changeWebDriver(driver)
 
// now, it is working as expected
 
WebUI.click(testObject)