Hi egun,
It is as similar as setting a value in a text box from a datatable. Here in your scenario a runtime datatable is created which has the text output value, you can use "Set Datatable("column", dtglobalsheet)" to populate your text box with the runtime value.
Have a look at the following code.
--------------
'Here the output value is saved in the Global sheet of Runtime Datatable.
Code:
Browser("Vision").Page("Vision").WebTable("#").Output CheckPoint("ClaimNum2") 'The value will be present in the runtime datatable (Global sheet)
Browser("Vision").Page("Vision").WebEdit("Visiontext").Set Datatable("vision_text", dtGlobalSheet)
----------------
Hope this helps!
Thanks,