Hello,
I want to create methods, that use specified wait times for elements. How can I get set Default wait for element timeout (in seconds) from project into my .groovy file
cause this is not working
private int timeout = RunConfiguration.getExecutionProperties().get('timeout')
2 Likes
Hi there,
Thank you very much for your topic. Please note that it may take a little while before a member of our community or from Katalon team responds to you.
Thanks!
Hi @curbanski ,
Welcome to our community. There are a lot of experts here willing to help you
See
I would try to answer to this question.
Let me translate the question: The Enhanced Click works fine, but it takes significantly long time. Why?
In the folder where you installed Katalon Studio, you would find the source code of com.kms.katalon.core.webui.keyword.builtin.EnhancedClickKeyword, which is the implementation of the “Enhanced Click” keyword.
See <Katalon installatio folder>/Contents/Eclipse/configuration/resources/source folder, where you will find several jar files. Please find …
In there I found a code snippet:
int timeout = KeywordHelper.checkTimeout(RunConfiguration.getTimeOut())
I am not sure if it is what you want.