one more addition it is not giving error but not capturing count in below script :
Text_Check is not printed anything
I expect result like this :
<HTML><HEAD><TITLE>pool Servlet</TITLE></HEAD><BODY><H1>Pool Diagnostics</H1><PRE> Number of connections in free list: 11 Number of connections in use: 22
from above I need to capture 11 in below script
Action()
{
web_url("index.html",
"URL=<url>",
"TargetFrame=",
LAST );
web_find("Employee Check",
"expect=notfound",
"matchcase=yes",
"onfailure=abort",
"report=failure",
"repeat=no",
"what=: ",
LAST );
web_find("Text Check",
"RightOf=<PRE>Number of connections in free list: ",
"LeftOf=\n",
"What= ",
LAST );
lr_output_message(lr_eval_string ("{Text_Check}"));
return 0;
}