Der ManualStepDialog ist eine Java-Klasse, die mit QF-Test
ausgeliefert wird. Sie können diesen Dialog auch für Ihren eigenen Bedarf
verwenden. Hierzu ein Beispiel:
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 cancelled
execInfo = manualDialog.getExecInfo()