Forum Discussion
rraghvani
Champion Level 3
3 days agoIgnoring rule "3. One thread per one problem" just this once!
- You could iterate through the scrollbar positions until the object becomes visible on screen and until scrollbar end position has been reached. Pseudocode code example
var scrollBar = YourContainerObject.VScroll; while (!YourTargetObject.VisibleOnScreen && scrollBar.Position < scrollBar.Max) { scrollBar.Position += 10; Delay(500); // Allow time to scroll } YourTargetObject.Click();
-
I don't understand this question. Do you want to perform a Shift Key?
- Within TestComplete you can have Project Suite, having a number of Projects. You can also set Test Items, to run all the projects it includes. Here's an example, where I run all projects within the project suite, in order
If you refer to TestComplete Command Line, there are several examples of running TestComplete via the command line shown.