How to call custom keyword into testcase level in katalon studio? - katalon-studio

I am trying to call custom keyword into testcase level in katalon studio:
But I am not able to do it as shown in this GIF.

Related

How to run javascript with flutter Windows

Is there any way to use flutter in Windows in order to call javascript methods that would require a browser? For example if I use a js method that does a simple task as return a + b it works, but if i try to use browser methods like window.open() it does not
Things I tried:
InAppWebView, but does not support Windows
flutter_html, i could make a page according to a given html code, but the javascripts functions would not run

Unable to perform the action on android webview

I am using Robot Framework with python. I have a page that has a web view. I am able to find the element through Appium inspector and also through the Chrome Dev tools. But those locators are not working. The test case passes but it does not click on that element.
Is there any work around for this issue?
Did you try the class name locator?
driver.find_element_by_class_name()

Katalon UI recorder fails to run for date and radio buttons

I'm new to Katalon Studio.
I did UI web (chrome) recording for my application which has 14 entries.
When i run the test it lauches the browser and continues until it fails at the date selection object.
I deleted the date object and ran again but then it failed at a radio button.
I am using Katalon Suite version 6.1.5
Also, please suggest if I can use another tool for automated testing that simply runs this test without the need of workarounds for date or radio buttons ?
You should detect elements by xpath or set correct xpath (You can get xpath of object with your browser.) for recorded elements under Object Repository. Please check this article: https://docs.katalon.com/katalon-studio/tutorials/detect_elements_xpath.html#issue-in-identifying-nested-elements
EDIT
You can use these identifiers to identify object in calendar.

Invoke built-in command from VSTS extension

Is it possible to invoke a built-in VSTS command from a custom extension?
I develop an extension with customized test results tab, and I want to reuse some built-in VSTS functionality. For example invoke Create bug menu action to create a new bug work item for a given test result.
No, you need to use its API or call REST API:
Client APIs

GWT Deferred Binding method call

Is it possible to use GWT deferred binding to make a method invocation of a class?
I've developed a GWT application whereby web pages forms UI widgets are generated using property files instead of coding them in Java.
Using sample property file below, my intention of using Java like reflection in GWT is so that if btnSave is clicked in a form, it will invoke validateAddress() method inside FormValidator.java to perform UI validation on address fields
Sample Property file
txtAddress.UiType=TextField
btnSave.Title=Save
btnSave.UiType=Button
btnSave.onClick=com.sample.form.validation.FormValidator.validateAddress()
FormValidator.java
public boolean validateAddress(){
...(validation code)
}