Hi,
Can you provide the final test log?
My expectation is that there are problems reported to the log caused by the fact that there is more than one browser process running in your system at the moment of test execution.
Basically, your test code commands this:
First line of code:
> sys.Browser("*").Page("*").Find("contentText","Photo, Video & Design",30).Click
-- Look for any browser process running in the system;
-- For the found arbitrary browser, get any page opened in it;
-- Within this page look for the web element with the "Photo, Video & Design" text;
-- Click on the found element.
Obviously, if, say, some browser process is running in the background with no page opened and this will be the process that TestComplete finds first, TestComplete will wait for the page and other web page elements.
Second line of code:
> call Sys.Browser("*").Page("*").WaitChild(Sys.Browser("*").Page("*").Find("contentText","Corel",30),30000)
-- Look for any browser process running in the system. Note - the found browser process well might be not the same that was used on previous step. This is because you are not reusing found process, but do search a-new;
-- For the found arbitrary browser, get any page opened in it. Same problem with the page;
-- Within this page, wait for a child web element, that is located on an arbitrary page of an arbitrary browser process that (web element) has the 'Corel' text. Again, note, that the first and second browser processes used in this line of code, likewise their respective pages, might be absolutely different ones (and differ from those found on first line) because you perform a search every time but do not reuse the found objects.
Third line of code:
> sys.Browser("*").Page("*").Find("contentText","Corel",30).Click
-- Look for any browser process running in the system. Again, the found browser process can be different than those been found previously;
-- For the found arbitrary browser, get any page opened in it. Same problem here;
-- Within this page look for the web element with the "Corel" text;
-- Click on the found element.