ContributionsMost RecentMost LikesSolutionsStarting TestComplete test after a MS Teams call is recognized Dear TestComplete Community, I am struggling with automating the following scenario and would love some help on this. I have two physical windows 11 machines running MS Teams clients. I need to automate calling from Machine A through Teams and accept the call on Machine B. I already automated the first part. The part I am struggling with is starting a test when a call comes in on Machine B. I basically need TestComplete / TestExecute to either start a test once this event occurs or run a test that will run forever and wait until the Teams call / Toast occurs on Machine B and continues with accepting the call etc. So the ideal scenario would be: 1. MS Teams client on Machine A calls the MS Teams client on Machine B (TestComplete) 2. Machine B receives a call from Machina A. Call is ringing and teams toast is visible. 3. TestExecute will either start a test where the accept is programmed or a test that is already running infinitely and recognizes this call and continues with the test (accepting, putting the call on hold, etc etc.) Right now I am timing this through Windows Task Scheduler but would really like to have some kind of waiting/processing mechanism once an inbound call is recognized on the second machine, the call will be accepted and handled according to the test. Thanks in advance for your help! Edit: I am only using keyword tests since I am not familiar with scripting yet. Re: How do I prevent a browser refresh after "Navigate" method in KeywordTests mattb Hello Matt, Thank you for your response. I found a workaround for this. Instead of the "Navigate" feature I use the "Aliases.browser.BrowserWindow" object which will be recorded once I click on the browser again, this will open the browser without refreshing the page. Works fine! How do I prevent a browser refresh after "Navigate" method in KeywordTests Dear community, I am new to TestComplete and have a question regarding the Navigate method for browsers in KeywordTesting. Basically what I am struggling with is when I am using multiple browsers (chrome, edge) and perform multiple navigate methods then it always refreshes my browser before it performs the following operations. However, one of web applications I am testing is a webchat so a refresh will close the chat session when already opened and this is something I would like to prevent. To clarify the above, an example from my automated keyword test: 1.Open the webchat URL in Chrome 2. Send a message through the chat window 3.As an agent in a different webapplication (edge), accept the chatmessage and send a reply 4. Navigate back to chrome and verify the chat reply from the agent At step 4, Testcomplete will refresh the chrome after the navigate to chrome method which is basically something I would like to prevent, since a refresh will close my ongoing chat session. Is there something that I could do / use to prevent the refresh at step 4? Any advise is very appreciated. Many thanks in advance. Kind Regards, Maros Solved