Tricentis Tosca 16.0 Released on Feb-2023 ----- UFT has been upgraded from UFT 15.0.1 to UFT One 15.0.2, Beginning at November 2020.

Wednesday 26 July 2017

Write a code to print numbers from 5 to 0?

For i=5 To 0 step -1
WScript.Echo i
Next

In what way program "hello world" you can write in VBscript?

In VBscript, you can write hello world in two ways, the program will display a message box with text hello world.
  1. MsgBox "Hello World"
  2. Echo "Hello World"