In this video you'll learn HOW TO:
► Create a workspace for your automation project
► Add a new test to the test tree
► Write a script that sends a ping and checks if it's responded
► Run the test and examine run-time logs
► Download the "Get Started" project with all up-to-date tutorial scripts.
► Unzip it to C:\ETS_Workspaces.
Sources
This script from the tutorial video will work with the Coronys Free Edition.
Just copy it to your ESL Edior and modify for your needs.
Declare Status, Response
Ping Response, "localhost", 64
StrSearch Status, Response, "bytes=64"
If Status < 0 Then
TMMessage GT_ErrorID, "Target is not responding."
Else
TMMessage GT_InfoID, "Target is connected"
EndIf
End