Hi Dikla,
Please find below a sanitised version of the script, its a simple log in and log out script. The issue we have is that we can not replay the script without it failing but also its not capturing anything to correlate to allow us to replay. Once logged on the Oracle Web protocol starts picking up dynamic data but not during the log on..
Action()
{
web_set_sockets_option("SSL_VERSION", "2&3");
web_url("AppsLocalLogin.jsp",
"URL=https://{AppURL}/OA_HTML/AppsLocalLogin.jsp",
"TargetFrame=",
"Resource=0",
"RecContentType=text/html",
"Referer=",
"Snapshot=t1.inf",
"Mode=HTML",
LAST);
web_submit_data("AppsLocalLogin.jsp_2",
"Action=https://{AppURL}/OA_HTML/AppsLocalLogin.jsp?",
"Method=POST",
"TargetFrame=",
"RecContentType=text/html",
"Referer=https://{AppURL}/OA_HTML/AppsLocalLogin.jsp",
"Snapshot=t2.inf",
"Mode=HTML",
ITEMDATA,
EXTRARES,
"Url=media/spinner.gif", ENDITEM,
LAST);
lr_think_time(17);
lr_start_transaction("Login");
web_submit_data("AppsLocalLogin.jsp_3",
"Action=https://{AppURL}/OA_HTML/AppsLocalLogin.jsp?",
"Method=POST",
"TargetFrame=",
"RecContentType=text/html",
"Referer=https://{AppURL}/OA_HTML/AppsLocalLogin.jsp",
"Snapshot=t3.inf",
"Mode=HTML",
"EncodeAtSign=YES",
ITEMDATA,
"Name=username", "Value={Username}", ENDITEM,
"Name=password", "Value={Password}", ENDITEM,
"Name=_lAccessibility", "Value=N", ENDITEM,
"Name=langCode", "Value=US", ENDITEM,
LAST);
web_url("OA.jsp",
"URL=https://{AppURL}/OA_HTML/OA.jsp?OAFunc=OANEWHOMEPAGE",
"TargetFrame=",
"Resource=0",
"RecContentType=text/html",
"Referer=https://{AppURL}/OA_HTML/AppsLocalLogin.jsp",
"Snapshot=t4.inf",
"Mode=HTML",
LAST);
web_url("detachTable.js",
"URL=https://{AppURL}/OA_HTML/cabo/oajsLibs/detachTable.js",
"TargetFrame=",
"Resource=0",
"RecContentType=text/plain",
"Referer=https://{AppURL}/OA_HTML/OA.jsp?OAFunc=OANEWHOMEPAGE",
"Snapshot=t5.inf",
"Mode=HTML",
LAST);
web_custom_request("RF.jsp",
"URL=https://{AppURL}/OA_HTML/RF.jsp?function_id=MAINMENUREST&security_group_id=0",
"Method=POST",
"TargetFrame=",
"Resource=0",
"RecContentType=application/xml",
"Referer=https://{AppURL}/OA_HTML/OA.jsp?OAFunc=OANEWHOMEPAGE",
"Snapshot=t6.inf",
"Mode=HTML",
"EncType=application/xml",
"Body=<params><param>RESPLIST</param><param>HOMEPAGE</param></params>",
EXTRARES,
"Url=../OA_MEDIA/folder_xxx.png", "Referer=https://{AppURL}/OA_HTML/OA.jsp?OAFunc=OANEWHOMEPAGE", ENDITEM,
LAST);
web_url("disclosecollapsed_16_xxx.png",
"URL=https://{AppURL}/OA_HTML/cabo/images/skyros/disclosecollapsed_16_xxx.png",
"TargetFrame=",
"Resource=0",
"RecContentType=text/plain",
"Referer=https://{AppURL}/OA_HTML/OA.jsp?OAFunc=OANEWHOMEPAGE",
"Snapshot=t7.inf",
"Mode=HTML",
LAST);
lr_end_transaction("Login",LR_AUTO);
Thanks,
Dave