{
  "synLogic": "int $ret \u003d $api($1);",
  "help": "The ns_page_think_time API allows you to pause test execution during a run. This is especially useful in simulating think time, the time a real user pauses to think between actions.",
  "notes": "",
  "returns": "It will return status 0 or 1",
  "arguments": "",
  "parameterization": "",
  "name": "ns_page_think_time",
  "syntax": "int ns_page_think_time(double page_think_time)",
  "javaSyntax": "int ns_page_think_time(double page_think_time)",
  "jsSyntax": "ns_page_think_time(page_think_time: number)",
  "cEx": "flow() \n{ \n  ns_page_think_time ( 1.28 ); \n}",
  "javaEx": "public class flow implements NsFlow\n{\n  public int execute(NSApi nsApi) throws Exception\n  {\n    nsApi.ns_page_think_time ( 1.28 ); \n  }\n}",
  "jsEx": " nsApi.ns_page_think_time ( 1.28 ); \n",
  "insertStrC": "ns_page_think_time(double page_think_time);",
  "insertStrJava": "ns_page_think_time(double page_think_time);",
  "insertStrJs": "ns_page_think_time(page_think_time: number);",
  "description": "The ns_page_think_time API allows you to pause test execution during a run. This is especially useful in simulating think time, the time a real user pauses to think between actions.",
  "component": [
     {
      "id": "$1",
      "type": "TextField",
      "label": "Think Time",
      "value": "",
      "css": "p-grid p-align-center w-100-p",
      "title": "Think time value should be numeric",
      "placeHolder": "",
      "style": "",
      "isDisabled": "",
      "labelVarCheckbox": "",
      "quotes": false,
      "validate": {
        "inputType": "Text",
        "disabled": false,
	"pattern": "^[0-9]+(\.[0-9]*)?$",
        "required": true,
        "min": 0,
        "max": 0,
	"method": "isVariableName"
      }
    },
    {
      "id": "$ret",
      "type": "TextField",
      "label": "Return Value",
      "value": "",
      "css": "p-grid p-align-center w-100-p",
      "title": "Enter Return Value",
      "placeHolder": "",
      "style": "",
      "isDisabled": "",
      "labelVarCheckbox": "",
      "validate": {
        "inputType": "Text",
        "disabled": false,
        "required": false,
        "min": 0,
        "max": 0
      }
    }
  ]
}
