I'm trying to use web_reg_find to see if a record is returned on a specific page of my application. When looking at the tree view I can see the record(s) but SaveCount is returning 0. There are several levels of redirection occuring and I'm guessing that this is the source of my problem. I'm successfuly capturing 2 parameters in the same web_url call. You'll notice in my code below I need to use IgnoreRedirection for the parameters. web_reg_find does not have this setting though.
Any ideas on how to capture how many records there are when redirection is taking place? My need for help is fairly urgent as I'm supposed to be running the test on Monday.
//Correlation comment - Do not change! Original value='3212099548439251' Name ='CorrelationParameter_7'
web_reg_save_param_ex( "ParamName=CorrelationParameter_7", "LB=_afrLoop=", "RB=&_a", SEARCH_FILTERS, "Scope=All", "IgnoreRedirections=No", "RequestUrl=*/home.jspx*", LAST);
//Correlation comment - Do not change! Original value='!13vbu0drtx' Name ='CorrelationParameter_8'
web_reg_save_param_ex( "ParamName=CorrelationParameter_8", "LB= value=\"", "RB=\"></span", "Ordinal=3", SEARCH_FILTERS, "Scope=All", "IgnoreRedirections=Yes", "RequestUrl=*/home.jspx*", LAST);
web_reg_find("Text=PO For CAP Performance Test)", "SaveCount=recordCount", LAST);
web_url("home.jspx_2", "URL=http://capcommittqa/CAPWebFrontEnd/faces/home.jspx?_afrLoop={CorrelationParameter_6}&_afrWindowMode=0&_afrWindowId={CorrelationParameter_4}_1", "Resource=0", "RecContentType=text/html", "Referer=http://capcommittqa/CAPWebFrontEnd/faces/home.jspx", "Snapshot=t85.inf", "Mode=HTTP", LAST);
Thanks!