When you run manual test thethere is open first window called Manual Runner: Test Set <namets>, Test <nametest>.
Where you can see the fields of run. And there is a status of run.
But this field is readonly if you have test with steps.
We would like to be able to edit this status in some cases to mark a test as "N/A" and record comments as to why that test was not executed in that test set. In ALM 11, we used the following code:
Sub Run_MoveTo
' On Error Resume Next
Run_Fields.Field("RN_STATUS").IsReadOnly = false
' On Error GoTo 0
End Sub
and that resolved the issue for us.When we upgraded to 11.52, this code no longer allows us to edit the status. Any ideas why this no longer works?