How to handle UnexpectedWindow/Overlapping window using the script or General Events?
SOLVED- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
How to handle UnexpectedWindow/Overlapping window using the script or General Events?
Hi All,
My application throws popup for every 3-5 Min. Script can proceed further by clicking on Ok button in the popup.
But how to recognise this popup using testcomplete dynamically?
Ex: While running the script, In middle if any popup appears TestComplete is not triggering it as UnexpectedWindow/Overlapping window. So that the webpage objects are going to "VisibleOnScreen=False" due to this popup. If objects are in Invisible state, we can't proceed further.
Please find the screen shot of the unwanted popup in the application and also Let me know if your require any other details in this regard.
Regards,
BommaReddy
Solved! Go to Solution.
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Baxatob,
Thanks for solution, but my scenario is when ever Ingestion is in process, the modal dialog occurs., So we are not sure when that dialog occurs during 500 testcases run, and we cant write CallObjectMethodAsync in every test case.
Hope this wont work as expected, So can you suggest the another solution.
Thanks, BommaReddy
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
What happens if this window is opened? Does your test fail and throw some kind of error message? If so, you can try to handle your case using OnLogError event. You can check this window existence each time, when TC posts an error message to the log.
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi All,
As a workaround, I got the better solution to handle Windowless popup(Model Based popup)
By using Timer Object we can overcome this problem. Write the following code in event handlers.
OnStartTest:
Sub OnStartTest(Sender) Dim MyTimer Set MyTimer = Utils.Timers.Add(8000, "unit1.TimerRoutine", True) MyTimer.Name = "ModelPopUp" Log.Message "Timer ON" End Sub
OnStopTest:
Sub OnStopTest(Sender) Utils.Timers.Items("ModelPopUp").Enabled = False Log.Message "Timer OFF" End Sub
unit1.TimerRoutine:
Function TimerRoutine 'write the code to check whether popup exists or Not If popup=True Then 'close popup (or) Click End If End Function
Before script starts, the controller will go to OnStartTest and activate Timer Object. Once Timer triggers, TestComplete pauses the test to run the timer’s routine. The test is resumed after the timer routine has finished running.
So for every 8sec, i am checking whether Windowless popup(Model Based popup) exists or not. For more details on Timer object click here
Regards,
BommaReddy
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hello,
What's 'unit1' here. I don't understand. Talking in Javascrip context, I was testing this and instead of unitname.timeRoutine, I'm using just the routine name and I get this error.
MyTimer = Utils.Timers.Add(10000, "StartUp.timeRoutine", true);
do you know why that would happen?
Error:
Unable to find the timer procedure "timeRoutine".
Thank you
Al
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
This thread is almost three years old and so a lot of context might have been lost. It is entirely possible that the error that you're experience is unrelated.
Please post your question in a separate thread as this one has been marked resolved.
Robert Martin
[Hall of Fame]
Please consider giving a Kudo if I write good stuff
----
Why automate? I do automated testing because there's only so much a human being can do and remain healthy. Sleep is a requirement. So, while people sleep, automation that I create does what I've described above in order to make sure that nothing gets past the final defense of the testing group.
I love good food, good books, good friends, and good fun.
Mysterious Gremlin Master
Vegas Thrill Rider
Extensions available
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
sounds great! Thank you
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
@Al2 :
Hi,
> Set MyTimer = Utils.Timers.Add(8000, "unit1.TimerRoutine", True)
> What's 'unit1' here.
https://support.smartbear.com/testcomplete/docs/reference/program-objects/timers/add.html
Does it help?
/Alex [Community Hero]
____
[Community Heroes] are not employed by SmartBear Software but
are just volunteers who have some experience with the tools by SmartBear Software
and a desire to help others. Posts made by [Community Heroes]
may differ from the official policies of SmartBear Software and should be treated
as the own private opinion of their authors and under no circumstances as an
official answer from SmartBear Software.
The [Community Hero] signature is used with permission by SmartBear Software.
https://community.smartbear.com/t5/custom/page/page-id/hall-of-fame
================================

- « Previous
-
- 1
- 2
- Next »
- « Previous
-
- 1
- 2
- Next »