Page 1 of 1

Automation Test Strategies

Posted: Mon May 27, 2013 9:40 am
by PhilBaird
Hi, I am investigating test automation of a Jade system and was wondering how other people had approached this and what success they had.

I am needing to used Smart Bears Test Complete which has a record and replay facility as well as script based testing.

I have done simple proof of concept for a notifications based UI driver which works up to the point of a message box at which point the app is blocked and I cannot find a way of clicking the OK button.

How have other peoples approached this task?

Re: Automation Test Strategies

Posted: Mon May 27, 2013 11:05 am
by JohnP
You can reimplement app.msgBox and return the appropriate code, eg

Code: Select all

if msg = "Do you want to save?" then return MsgBox_Return_Yes else return inheritMethod(msg, title, flags); endif;