ContributionsMost RecentMost LikesSolutionsRe: TestExcute logs cant be viewed I am not 100% sure what happen, but I thought I had TC and TE both open the same project suite. Well, I only have a 1 project suite anyway, so it is unlikely I made a mistake there. As for the solution, I cleared out all TC logs, then restarted TC, all sudden my logs appear. TC can open 5G logs, no problem. Thank you very much for help. Re: TestExcute logs cant be viewed How do I use TC to open TE logs? I copied the folder from TE to TC, but that didint help. TestExcute logs cant be viewed I have a very large (>5G) test log folder generated by TE run. TE cant open the file. I am assuming because it is too large. Normally, end of the test run, TE opens the logs for me. But this folder happen to be so large and I cant get TE to open it. Whats the best way to get the loges open? Can I use TC to open these logs? SolvedRe: Waiting until the window is activated Thank you very much for responding. In this case, it does find the object, every time. Then it seems like mouse click even gets executed to a certain degree. What I mean by that is, since the curser move into the correct position for the mouse click, I assume mouse click gets executed. However, "OK" button never gets pressed. Waiting until the window is activated I have following code that sets off a timer periodically and click "OK" a button. At the moment, I'm seeing two issues. 1) mouse moves on to the "OK" button (since there is no mouse move commands, it must be executing the mouse click), but the "OK" button does not get clicked. (Wait for the button object can see the "OK" button). 2) After missed button click, I see message saying "Waiting until the window is activated" and id doesnt go away. (Without the timer, "OK" button click works fine). It looks as if control doesnt get returned to the main for loop after handleRestartDeviceCautionForm() gets executed. During the time handleRestartDeviceCautionForm() executes, I need rest of the code to pause, because this "Restart Device Form" blocks all the functionality in the application. This is being run on Win7 with Python 3.4.3. Can anyone show me how to over come this issue? Below is the code: #Main func cancel_future_calls = call_repeatedly(60, handleRestartDeviceCautionForm) for i in range(120): Delay(1000) cancel_future_calls() # stop future calls #Timer code from threading import Timer import threading from threading import Event, Thread def call_repeatedly(interval, func, *args): stopped = Event() def loop(): while not stopped.wait(interval): # the first call is in `interval` secs func(*args) Thread(target=loop).start() return stopped.set #Code that handles ok button def handleRestartDeviceCautionForm(): Tgence = ConfigTool() if Tgence.getzremindBtn().Exists: Tgence.getzremindBtn().ClickButton() Delay(100)