Hi,
You need first to get the ID of the newly created test instance; then create a TSTest object, update the Responsible Tester field with the default value and post it:
Sub TestSetTests_AfterPost Dim instanceID Dim objTestInstance instanceID = TestSetTest_Fields.Field("TC_TESTCYCL_ID").Value Set objTestInstance = TDConnection.TSTestFactory.Item(instanceID) objTestInstance.Field("TC_TESTER_NAME") = "<someDefaultVal>" objTestInstance.Post Set objTestInstance = Nothing End Sub
I hope this works for you.
Best regards,
Ivaylo Ivanov