Page 1 of 1

Ranorex search timeout-effective timeout

Posted: Wed Jul 03, 2019 9:17 am
by Hygiei4
First of all hi, I wanna ask one question.What is the exactly differences between search timeout and effective timeout ?

Re: Ranorex search timeout-effective timeout

Posted: Wed Jul 03, 2019 9:39 am
by Stub
Effective Timeout is the cumulative amount of time spent searching for the element based on its nesting hierarchy.
Search Timeout is the search time just at that node level.

So if you have an element such as Form.Window.Control then the SearchTimeout might be 30s for Form, 30s for Window and 30s for Control, but the EffectiveTimeout for Control is Form + Window + Control == 90s.

Re: Ranorex search timeout-effective timeout

Posted: Wed Jul 03, 2019 9:49 am
by odklizec
Hi,

This image may help with understanding what effective timeout is:
EffectiveTiemout.png

Re: Ranorex search timeout-effective timeout

Posted: Wed Jul 03, 2019 10:24 am
by Hygiei4
Okey I wanna ask one more question ranorex guide mentioned "app folder" is the same with "application folder"?

Re: Ranorex search timeout-effective timeout

Posted: Wed Jul 03, 2019 10:29 am
by odklizec
Hi,

App folder represents top-level repository container, which usually also represents main application window, hence "app folder" name. It's nicely described here:
https://www.ranorex.com/help/latest/ran ... #Appfolder

Re: Ranorex search timeout-effective timeout

Posted: Wed Jul 03, 2019 11:53 am
by Hygiei4
odklizec wrote:
Wed Jul 03, 2019 10:29 am
Hi,

App folder represents top-level repository container, which usually also represents main application window, hence "app folder" name. It's nicely described here:
https://www.ranorex.com/help/latest/ran ... #Appfolder
But my question, is it same "Application Folder"? Can we say app folder = application folder

Re: Ranorex search timeout-effective timeout

Posted: Wed Jul 03, 2019 4:37 pm
by Hygiei4
I wanna ask one more question:
can we do same actions with code modules as recording modules?

Re: Ranorex search timeout-effective timeout

Posted: Wed Jul 03, 2019 4:49 pm
by odklizec
Hygiei4 wrote:
Wed Jul 03, 2019 11:53 am
But my question, is it same "Application Folder"? Can we say app folder = application folder
If you mean “application folder”, like the folder where your application is located, then no, it’s not the dame thing. The App folder in repository is just container, representing root level of tested application GUI.

Re: Ranorex search timeout-effective timeout

Posted: Wed Jul 03, 2019 4:51 pm
by odklizec
Hygiei4 wrote:
Wed Jul 03, 2019 4:37 pm
I wanna ask one more question:
can we do same actions with code modules as recording modules?
Yes, you can do the same actions in code modules as in recording modules and much more! In code modules, you can code almost anything you want, using C# or VB .Net code.

Re: Ranorex search timeout-effective timeout

Posted: Thu Jul 04, 2019 10:41 am
by Hygiei4
Thank u so much :)