Hi , i am trying to enter – WebElement.sendkeys(’ abc’ )
in katalon but after pressing . > ctrl and space >send keys option not showing.
Pls suggest
Arnel
January 16, 2019, 7:07am
2
Hi Niteshbola,
What do you mean about this?
Could you explain a little more?
Thanks.
Are you talking about the code intelligence?
Hi,
I upgraded my katalon studio version from 5.8.6 to 5.9.0 but after that my code intelligence not working properly.
Please look into this.
Katalon 64-5.8.6, intellisense/autocomplete has stopped being functional in Script mode.
I found a fix on my machine. The autocomplete was turned on, but was only activated by a dot (".") after 500ms. I was typing past the dot quickly enough that the autocomplete was not triggering. Fix:
- Go to Window > Katalon Studio Preferences > Java > Editor > Content Assist
- In the Auto Activation section, change the “Auto activation triggers for Java” field from “.” to “ABCDEFGHIJKLMNOPQRSTUVWXYZabcde…
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)