The ManualStepDialog is a Java class delivered by QF-Test. If you want to make
use of this dialog for your own tests, please see following sample script and API
specification.
from de.qfs.apps.qftest import ManualStepDialog
#create the dialog and show it immediately
manualDialog = ManualStepDialog(None, "New Test Case Title", \
"Step Description", "Expected Test Result")
#did the test fail or succeed?
failOrSuccess = manualDialog.getResult()
#get the content of the received result
receivedResult = manualDialog.getReceivedResult()
#get the execution information, whether skipped or canceled
execInfo = manualDialog.getExecInfo()