can I pause automatic test and remind me to manual test then continue
SOLVED- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
can I pause automatic test and remind me to manual test then continue
When test desktop application, some operations use automatic to test not very well, so I want to pause automatic test and eye-catching remind me to manual test through popup a dialog or other better way, if I finished manual operation, i tell it, then it will continue automatic test. Does testcomplete support this? How to do?
Thank you very much
Solved! Go to Solution.
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
When test desktop application, some operation use automatic to test not very well, I want to pause it and remind me to manual operate it through a dialog or other way. Does testcomplete have this function? How to do? Thanks very much
email address: 178254207@qq.com
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
you may try this...........
function showingAmessage() { BuiltIn.ShowMessage("Hey you tester!...did you finished manual stuff "); }
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Previous question I showed you how to popup a message.......
in javascript you can write some thing like.....
function How2Stop() { var xyz = null; // you fogot to set value to xyz before test run if (xyz==null){ BuiltIn.ShowMessage('Terrible thing happend, I have do this manualy'); Runner.Pause(); } }
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
You can also use UserForms to create your own modal dialog to communicate to the tester and even prompt for responses and such.
https://support.smartbear.com/testcomplete/docs/testing-with/advanced/user-forms/index.html
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
Just as a side note, this is a forum for sharing of information. Only a few people here are actual staff of SmartBear. The rest of us are users who share our expertise and experience. If you're looking for a direct response from SmartBear, it is better to use their case management portal for that.
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
Thanks, it is very helpful
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thanks your replay, I also love good foods, beautiful clothes, good films and good friends and I love money
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
This question was posted twice and I've merged the conversations.
