CompiledScript.StopTimeWatcher Method

Definition

Stops analyzer called before.

public void StopTimeWatcher(string name)

Parameters

 name  string

Examples

Step (1, "Check Phone Number Availability Online » Phone Number Monitoring - https://www.phonenumbermonitoring.com/");
tab0 = Tabs.NewTab ();
StartScriptTimeWatcher ("ScriptTimeWatcher_1", WatcherType.Alert, "10sec".ToDuration ());
StartNetworkBodyAnalyzer ("BodyAnalyzer_1", WatcherType.Alert, "*", "*", MaskType.Wildcard, AnalyzingType.Match, 1, 0);
tab0.GoTo ("https://www.phonenumbermonitoring.com/");
tab0.Link ("//A[normalize-space(@TITLE)=\"Client Login\"]", "(//A[normalize-space(text())=\"Client Login\"])[1]", "/HTML/BODY/DIV[1]/DIV/HEADER/DIV[2]/DIV/DIV/DIV/DIV/DIV/A").Click ();
StopTimeWatcher ("ScriptTimeWatcher_1");