Quantcast
Channel: LoadRunner Practitioners Forum topics
Viewing all 3978 articles
Browse latest View live

how to solve the 27492 issue "HttpSendRequest" failed, Windows error code=8 and retry limit

0
0

TruClient exception handling

0
0

TruClient 12.53 script to be executed by AppPulse

I have a situation where need a script to read the last updated time stamp from a web page and throw an error if that time stamp is more than 20 minutes old. I am using TruClient 12.53 and have a script that can read the time stamp, compare it to the current time and determine if it is too old. What I can't get it to do is make the transaction fail so I get an alert. I have tried using the LR.log and LR.endTransaction functions, but I can't get the script to fail. Do you have any suggestions? An example would be great.

Here is an exerpt from the mdrv.log after I run the script in VuGen.  You can see it logs an error, then says that the transaction ended with a Fail status and then says it has no error messages!:

t=00007744ms: Error -205177: Error: Outage map not updated within past 20 minutes Snapshot Info [MSH 1 0] [MsgId: MERR-205177]
Notify: Transaction "Map Refresh" ended with a "Fail" status (Duration: 0.7320 Think Time: 0.0130 Wasted Time: 0.2100).
Notify: Transaction "Map Refresh" has 0 error message(s).
t=00007988ms: ** 3.1: Evaluate JavaScript code LR.log("Error: Outage ma...fresh", "Fail"); ** successfully completed with end event 'Action completed' [MsgId: MMSG-205180]
t=00008028ms: ** 3: If (true) ** successfully completed with end event 'Action completed' [MsgId: MMSG-205180]

Thanks in advance!

Joe

Entitlement issues Expert day

0
0

Hi all,

We are experience entitlement issues so that means it is not possible for you to access the LoadRunner Support Customer Forum, where the online expert day is taking place.

We are investigating the issue and trying to resolve it as soon as possible.

Apologize for the inconvenience.

Greetings,

Bill

SSL communication, LoadRunner controller to LoadGenerator

0
0

In our system, the load generators act as the server in client-server communications between the LR controller and the LoadGenerator.  Must the SSL digital certificate installed on each load generator be unique among the load generators?

 

Load generator - webtrace issue.

0
0

Hello guys,

I have one really annoying problem. When i try to run webtrace with destionation any host from bin folder in Load Generator, all the time i get result like:

Sending Webtrace request [1/1]

webtrace_send_probe failed

And this issue happen only from one workstation. Load generator is used by Business Process Monitor. Btw when i try to tracert host from cmd i dont meet this issue. If someone of you are familiar with this problem i will be very thankful.

Thanks in advance.

Br,

Tsvetan Hristov

Loadrunner version 12.53 recording Citrix version 7.6 encounter a digital certificate issue.

0
0

As I said in the subject , I use Loadrunner  version 12.53   recording Citrix version 7.6 encounter a  digital certificate issue.   I use the mulitple protocol  web http+citrix ICA  to record the script  view web interface. Would any  one kindly help me on this ?What should i do to not show this  screen? . Attached file is the error screen snap during script recording. Thanks very mush!

How to Pass header information in Truclient IE script

0
0

Plz let me know how can I pass the header information in Truclient IE script?

Loadunner .Net protocol for Windows Application and TLS1.2

0
0

Hi,

I am trying to record loadrunner script using .net protocol but I am getting unable to record error just after clicking on record button. My application is based windows desktop application on .net 4.5 architecture and worked on TLS1.2. All the communication is happening in serialization and desalinization manner.
However, i tried to record the script in HTTP/HTML protocol also after setting up network mapping for TLS1.2 and it recorded successfully but all the request are in encrypted format which is difficult to understand.
Please suggest how can i record my .net desktop application in loadrunner .net protocol that works on TLS1.2.


LoadRunner 12.53 / Sitescope 11.30/11.33 Integration

0
0

Hi Everyone,

I'm trying to get loadrunner (12.53) and sitescope for loadtesting (11.33) talking to each other and I seem to be running into a few issue.

I'm getting the dreaded error message in loadrunner

Parsing error.
Details: host localhost, port 8888, line: 1.
Reason: Invalid at the top level of the document.
.
Contents: Hello from Connect!
 [MsgId: MMSG-47587]

When I type "http://localhost:8888/SiteScope/cgi/go.exe/SiteScope?page=topaz" into the browser on the sitescope machine I get this back

Hello from Connect!

I was expecting to see xml coming back, is there anything in sitescope I need to do to get it returning the proper xml.  It has monitors set up and running.

First time i've ever seen this,

Any ideas ?

Dave

Need help about the script error using oracle 2-tier

0
0

Recorded the application as

 lr_start_transaction("LaunchApp");

                 lrd_init(&InitInfo, DBTypeVersion);

                lrd_initialize_db(LRD_DBTYPE_ORACLE, 2, 0);

                lrd_env_init(LRD_DBTYPE_ORACLE, &OraEnv1, 0, 0);

                lrd_ora8_handle_alloc(OraEnv1, SVCCTX, &OraSvc1, 0);

                lrd_ora8_handle_alloc(OraEnv1, SERVER, &OraSrv1, 0);

                lrd_ora8_handle_alloc(OraEnv1, SESSION, &OraSes1, 0);

                lrd_server_attach(OraSrv1, "tecs6b", 6, 0, 0);

                lrd_ora8_attr_set_from_handle(OraSvc1, SERVER, OraSrv1, 0, 0);

                lrd_ora8_attr_set(OraSes1, USERNAME, "eltpca", -1, 0);

                lrd_ora8_attr_set(OraSes1, PASSWORD, lr_decrypt("5874ca7fc5a1d7494e926de9"), -1, 0);

                lrd_ora8_attr_set_from_handle(OraSvc1, SESSION, OraSes1, 0, 0);

                lrd_session_begin(OraSvc1, OraSes1, 1, 0, 0);

                lrd_oci8_to_oci7(OraSvc1, &Con1, 0);

                lrd_open_cursor(&Csr1, Con1, 0);

                lrd_stmt(Csr1, "ALTER SESSION SET REMOTE_DEPENDENCIES_MODE=SIGNATURE", -1, 0 /*Non deferred*/, 1 /*Dflt Ora Ver*/, 0);

                lrd_exec(Csr1, 0, 0, 0, 0, 0);

                lrd_close_cursor(&Csr1, 0);

                lrd_ora8_attr_set_from_handle(OraSvc1, SESSION, OraSes1, 0, 0);

                lrd_open_cursor(&Csr2, Con1, 0);

                lrd_stmt(Csr2, "ALTER SESSION SET REMOTE_DEPENDENCIES_MODE=SIGNATURE", -1, 0 /*Non deferred*/, 1 /*Dflt Ora Ver*/, 0);

                lrd_exec(Csr2, 0, 0, 0, 0, 0);

                lrd_close_cursor(&Csr2, 0);

                lr_end_transaction("LaunchApp",LR_AUTO);

 From home page , I am trying to generate a report by clicking on a Report tab.

It prompts me an authentication window , which gets recorded as

lrd_server_attach(OraSrv2, "tecs6b", 6, 0, 0);

                lrd_ora8_attr_set_from_handle(OraSvc2, SERVER, OraSrv2, 0, 0);

                lrd_ora8_attr_set(OraSes2, USERNAME, "ELTPCA", -1, 0);

                lrd_ora8_attr_set(OraSes2, PASSWORD, lr_decrypt("5874ca805387ef603cf0c08f"), -1, 0);

                lrd_session_begin(OraSvc2, OraSes2, 1, 0, 1);

               

                lr_think_time(32);   /*check until here */

 

                lrd_server_attach(OraSrv2, "tecs6b", 6, 0, 1);

                lrd_server_detach(OraSrv2, 0, 0);

                lrd_server_attach(OraSrv2, "tecs6b", 6, 0, 0);

                lrd_ora8_attr_set_from_handle(OraSvc2, SERVER, OraSrv2, 0, 0);

                lrd_ora8_attr_set(OraSes2, USERNAME, "eltpca", -1, 0);

                lrd_ora8_attr_set(OraSes2, PASSWORD, lr_decrypt("5874ca807387cf601cf0e08f"), -1, 0);

                lrd_session_begin(OraSvc2, OraSes2, 1, 0, 0);

                lrd_ora8_attr_set_from_handle(OraSvc2, SESSION, OraSes2, 0, 0);

                lrd_oci8_to_oci7(OraSvc2, &Con2, 0);

                lrd_open_cursor(&Csr22, Con2, 0);

                lrd_stmt(Csr22, "ALTER SESSION SET REMOTE_DEPENDENCIES_MODE=SIGNATURE", -1, 0 /*Non deferred*/, 1 /*Dflt Ora Ver*/, 0);

                lrd_exec(Csr22, 0, 0, 0, 0, 0);

                lrd_close_cursor(&Csr22, 0);

                lrd_open_cursor(&Csr23, Con2, 0);

                lrd_stmt(Csr23, "SELECT NUMERIC_VALUE FROM PRODUCT_USER_PROFILE  WHERE UPPER(PRODUCT)"

        " = 'SQL*REPORTWRITER'    AND UPPER(ATTRIBUTE) = "

        "'PAGE_LIMIT'    AND USERID = 'ELTPCA'", -1, 0 /*Non deferred*/, 1 /*Dflt Ora Ver*/, 0);

                lrd_bind_cols(Csr23, BCInfo_D1071, 0);

                lrd_exec(Csr23, 0, 0, 0, 0, 0);

                lrd_fetch(Csr23, 0, 1, 0, PrintRow288, 0);

                /*Note:  no rows returned by above lrd_fetch*/

 

                lrd_stmt(Csr23, "SELECT NUMERIC_VALUE FROM PRODUCT_USER_PROFILE  WHERE UPPER(PRODUCT)"

        " = 'SQL*REPORTWRITER'    AND UPPER(ATTRIBUTE) = "

        "'PAGE_LIMIT'    AND USERID = 'PUBLIC'", -1, 0 /*Non deferred*/, 1 /*Dflt Ora Ver*/, 0);

                lrd_bind_cols(Csr23, BCInfo_D1073, 0);

                lrd_exec(Csr23, 0, 0, 0, 0, 0);

                lrd_fetch(Csr23, 0, 1, 0, PrintRow290, 0);

                /*Note:  no rows returned by above lrd_fetch*/

 

                lrd_close_cursor(&Csr23, 0);

                lrd_initialize_db(LRD_DBTYPE_ORACLE, 2, 0);

                lrd_env_init(LRD_DBTYPE_ORACLE, &OraEnv3, 0, 0);

                lrd_open_cursor(&Csr24, Con2, 0);

                lrd_stmt(Csr24, "select ROLE  from SESSION_ROLES", -1, 1 /*Deferred*/, 1 /*Dflt Ora Ver*/, 0);

               

                //lrd_stmt(Csr24, "select ROLE  from SESSION_ROLES                     ", -1, 1 /*Deferred*/, 1 /*Dflt Ora Ver*/, 0);

               

                lrd_exec(Csr24, 1, 0, 0, 0, 0);

                lrd_bind_cols(Csr24, BCInfo_D1075, 0);

                lrd_fetch(Csr24, -7, 1, 0, PrintRow294, 0);

                GRID(294);

                lrd_ora8_handle_alloc(OraEnv2, STMT, &OraStm8, 0);

                lrd_ora8_stmt(OraStm8, "select ca . card_number \"Card number\" , ca . cr_account_nbr \""

        "Account number\" , ca . client_code \"Client code\" , ca . "

        "embossed_name \"Short name\" , ca . product_code \"Product "

        "code\" , ac . profile_code \"Credit plan\" , ca . "

        "promo_code \"Promo code\" , ac . opening_date \"Acc opening "

        "date\" , cl . date_create \"Customer opening date\" , ca . "

        "opening_date \"Card opening date\" , ca . expiry_date \""

        "Expiry date\" , clb . credit_limit \"Client credit limit\" ,"

        " ac . credit_limit \"Account credit limit\" , cbd . "

        "credit_limit \"Card credit limit\" , NVL ( ac . "

        "credit_limit , 0 ) + NVL ( cbd . bal_payment , 0 ) - NVL ( "

        "cbd . bal_purchase , 0 ) - NVL ( cbd . bal_cash , 0 ) - NVL "

        "( cbd . bal_te , 0 ) - NVL ( cbd . bal_interest , 0 ) - NVL "

        "( cbd . bal_fee , 0 ) - NVL ( cbd . bal_loan_txn , 0 ) - "

        "NVL ( cbd . bal_transfer , 0 ) + NVL ( cbd . cur_payment , "

        "0 ) - NVL ( cbd . cur_purchase , 0 ) - NVL ( cbd . cur_cash "

        ", 0 ) - NVL ( cbd . cur_te , 0 ) - NVL ( cbd . cur_interest "

        ", 0 ) - NVL ( cbd . cur_fee , 0 ) - NVL ( cbd . "

        "cur_loan_txn , 0 ) - NVL ( cbd . cur_transfer , 0 ) - NVL ( "

        "cbd . cur_autho , 0 ) \"Current outstanding\" , decode ( ca "

        ". basic_card_flag , 0 , 'Primary' , 'Add-on' ) \"Card type\""

        " , ca . basic_card_number \"Basic card\" , ac . cycoff_code "

        "\"Billing cycle\" , ac . acc_unpaid_status \"Delinquency "

        "block\" , ac . acc_adm_status \"Admin block\" , ac . "

        "acc_unpaid_status_date \"Delinquency block date\" , ac . "

        "acc_adm_status_date \"Admin block date\" , ca . status_code "

        "\"Card block\" , ca . status_date \"Card block date\" , nw "

        ". network_code \"Network\" , ca . branch_code \""

        "Branch_code\" from card ca , account ac , client cl , "

        "cr_card_balance_details cbd , network_card_type nw , "

        "cr_client_balance_details clb , product pr   where "

        "ac.bank_code = : p_bank_code and ca.status_code = '7' and "

        "ca.branch_code = '0380' and nw.network_code = '02' and "

        "ca.cr_account_nbr = ac.cr_account_nbr and ca.bank_code = "

        "ac.bank_code and ca.client_code = cl.client_code and "

        "ca.bank_code = cl.bank_code and ca.card_number = "

        "cbd.card_number and ca.bank_code = cbd.bank_code and "

        "ca.client_code = clb.client_code and ca.bank_code = "

        "clb.bank_code and ca.product_code = pr.product_code and "

        "ca.bank_code = pr.bank_code and pr.card_type = "

        "nw.network_card_id ORDER BY 25 ASC,26 ASC , ca.client_code ,"

        " ca.basic_card_number desc", 1, 0, 0);

                lrd_assign(&P_BANK_CODE_D1076, 0, 0, 0, 0);

                lrd_ora8_bind_placeholder(OraStm8, &OraBnd6, "P_BANK_CODE", &P_BANK_CODE_D1076,

        0, 0, 0);

                lrd_ora8_exec(OraSvc2, OraStm8, 0, 0, &uliRowsProcessed, 0, 0, 0, 16,

        0);

                GRID0(296);

                lrd_open_cursor(&Csr25, Con2, 0);

                lrd_stmt(Csr25, "SELECT BRANCH_NAME   FROM BRANCH  WHERE LTRIM(RTRIM(BRANCH_CODE)) = "

        "LTRIM(RTRIM(:b1))  AND BANK_CODE = :b2", -1, 0 /*Non deferred*/, 1 /*Dflt Ora Ver*/, 0);

                lrd_bind_cols(Csr25, BCInfo_D1078, 0);

                lrd_assign_bind(Csr25, "B2", "504436", &B2_D1079, 0,

        0, 0);

                lrd_assign_bind(Csr25, "B1", "0380", &B1_D1080, 0,

        0, 0);

                lrd_exec(Csr25, 0, 0, 0, 0, 0);

                lrd_fetch(Csr25, 1, 1, 0, PrintRow300, 0);

                GRID(300);

                lrd_cancel(0, Csr25, 2 /*Current*/, 0);

                lrd_open_cursor(&Csr26, Con2, 0);

                lrd_stmt(Csr26, "SELECT NETWORK_LABEL   FROM NETWORK  WHERE NETWORK_CODE = :b1", -1, 0 /*Non deferred*/, 1 /*Dflt Ora Ver*/, 0);

                lrd_bind_cols(Csr26, BCInfo_D1082, 0);

                lrd_assign_bind(Csr26, "B1", "02", &B1_D1083, 0, 0, 0);

                lrd_exec(Csr26, 0, 0, 0, 0, 0);

                lrd_fetch(Csr26, 1, 1, 0, PrintRow304, 0);

                GRID(304);

                lrd_cancel(0, Csr26, 2 /*Current*/, 0);

                lrd_open_cursor(&Csr27, Con2, 0);

                lrd_stmt(Csr27, "SELECT DESCRIPTION   FROM SYSCODE  WHERE CODE = :b1  AND BANK_CODE ="

        " :b2  AND TYPE_ID = 'CARD_STATUS_RESPONSE'", -1, 0 /*Non deferred*/, 1 /*Dflt Ora Ver*/, 0);

                lrd_bind_cols(Csr27, BCInfo_D1085, 0);

                lrd_assign_bind(Csr27, "B2", "504436", &B2_D1086, 0,

        0, 0);

                lrd_assign_bind(Csr27, "B1", "7", &B1_D1087, 0, 0, 0);

                lrd_exec(Csr27, 0, 0, 0, 0, 0);

                lrd_fetch(Csr27, 1, 1, 0, PrintRow308, 0);

                GRID(308);

                lrd_cancel(0, Csr27, 2 /*Current*/, 0);

                lrd_open_cursor(&Csr28, Con2, 0);

                lrd_stmt(Csr28, "SELECT USR_NAME   FROM USERS  WHERE USR_ID = :b1", -1, 0 /*Non deferred*/, 1 /*Dflt Ora Ver*/, 0);

                lrd_bind_cols(Csr28, BCInfo_D1089, 0);

                lrd_assign_bind(Csr28, "B1", "Admin", &B1_D1090, 0,

        0, 0);

                lrd_exec(Csr28, 0, 0, 0, 0, 0);

                lrd_fetch(Csr28, 1, 1, 0, PrintRow312, 0);

                GRID(312);

                lrd_cancel(0, Csr28, 2 /*Current*/, 0);

                lrd_open_cursor(&Csr29, Con2, 0);

                lrd_stmt(Csr29,

        "SELECT REPORT_HEADING   FROM EC_REPORTS  WHERE REPORT_ID = 'RCD_990.REP'", -1, 0 /*Non deferred*/, 1 /*Dflt Ora Ver*/, 0);

                lrd_bind_cols(Csr29, BCInfo_D1092, 0);

                lrd_exec(Csr29, 0, 0, 0, 0, 0);

                lrd_fetch(Csr29, 0, 1, 0, PrintRow314, 0);

                /*Note:  no rows returned by above lrd_fetch*/

 

                lrd_cancel(0, Csr29, 2 /*Current*/, 0);

                lrd_open_cursor(&Csr30, Con2, 0);

                lrd_stmt(Csr30, "SELECT BA.BANK_NAME   FROM BANK BA  WHERE BA.BANK_CODE = :b1", -1, 0 /*Non deferred*/, 1 /*Dflt Ora Ver*/, 0);

                lrd_bind_cols(Csr30, BCInfo_D1094, 0);

                lrd_assign_bind(Csr30, "B1", "504436", &B1_D1095, 0,

        0, 0);

                lrd_exec(Csr30, 0, 0, 0, 0, 0);

                lrd_fetch(Csr30, 1, 1, 0, PrintRow318, 0);

                GRID(318);

                lrd_cancel(0, Csr30, 2 /*Current*/, 0);

                lrd_assign(&P_BANK_CODE_D1096, "504436", 0, 0, 0);

                lrd_ora8_bind_placeholder(OraStm8, &OraBnd6, "P_BANK_CODE", &P_BANK_CODE_D1096,

        0, 0, 0);

                lrd_ora8_bind_col(OraStm8, &OraDef12, 1, &Card_number_D1097, 0, 0);

                lrd_ora8_bind_col(OraStm8, &OraDef13, 2, &Account_number_D1098, 0, 0);

                lrd_ora8_bind_col(OraStm8, &OraDef14, 3, &Client_code_D1099, 0, 0);

                lrd_ora8_bind_col(OraStm8, &OraDef15, 4, &Short_name_D1100, 0, 0);

                lrd_ora8_bind_col(OraStm8, &OraDef16, 5, &Product_code_D1101, 0, 0);

                lrd_ora8_bind_col(OraStm8, &OraDef17, 6, &Credit_plan_D1102, 0, 0);

                lrd_ora8_bind_col(OraStm8, &OraDef18, 7, &Promo_code_D1103, 0, 0);

                lrd_ora8_bind_col(OraStm8, &OraDef19, 8, &Acc_opening_date_D1104, 0, 0);

                lrd_ora8_bind_col(OraStm8, &OraDef20, 9, &Customer_opening_date_D1105, 0, 0);

                lrd_ora8_bind_col(OraStm8, &OraDef21, 10, &Card_opening_date_D1106, 0, 0);

                lrd_ora8_bind_col(OraStm8, &OraDef22, 11, &Expiry_date_D1107, 0, 0);

                lrd_ora8_bind_col(OraStm8, &OraDef23, 12, &Client_credit_limit_D1108, 0, 0);

                lrd_ora8_bind_col(OraStm8, &OraDef24, 13, &Account_credit_limit_D1109, 0, 0);

                lrd_ora8_bind_col(OraStm8, &OraDef25, 14, &Card_credit_limit_D1110, 0, 0);

                lrd_ora8_bind_col(OraStm8, &OraDef26, 15, &Current_outstanding_D1111, 0, 0);

                lrd_ora8_bind_col(OraStm8, &OraDef27, 16, &Card_type_D1112, 0, 0);

                lrd_ora8_bind_col(OraStm8, &OraDef28, 17, &Basic_card_D1113, 0, 0);

                lrd_ora8_bind_col(OraStm8, &OraDef29, 18, &Billing_cycle_D1114, 0, 0);

                lrd_ora8_bind_col(OraStm8, &OraDef30, 19, &Delinquency_block_D1115, 0, 0);

                lrd_ora8_bind_col(OraStm8, &OraDef31, 20, &Admin_block_D1116, 0, 0);

                lrd_ora8_bind_col(OraStm8, &OraDef32, 21, &Delinquency_block_date_D1117, 0, 0);

                lrd_ora8_bind_col(OraStm8, &OraDef33, 22, &Admin_block_date_D1118, 0, 0);

                lrd_ora8_bind_col(OraStm8, &OraDef34, 23, &Card_block_D1119, 0, 0);

                lrd_ora8_bind_col(OraStm8, &OraDef35, 24, &Card_block_date_D1120, 0, 0);

                lrd_ora8_bind_col(OraStm8, &OraDef36, 25, &Network_D1121, 0, 0);

                lrd_ora8_bind_col(OraStm8, &OraDef37, 26, &Branch_code_D1122, 0, 0);

                lrd_ora8_exec(OraSvc2, OraStm8, 25, 0, &uliRowsProcessed, 0, 0, 0, 0,

        1);

                GRID0(320);

                // lrd_ora8_print(OraStm8, 0);

 But while executing the above Iam getting the below error--

Action.c(739): Server Handle has not been allocated (NULL)

Action.c(739): server_attach: ERROR, return-code=LRDE2090

 Could any body please help me in resolving this error.

 

How to enable Parameterization option in True Client Protocol Script

0
0

We are seeing the parameterization option is disabled in Load Runner 12.53version. How to enable the parameterization option in true client web protocol.

How to parameterize multiple users each with a different password?

0
0

So i know how to create a parameter to have different users test a login if the password is the same, but what if i have 10 different users all with 10 different passwords. What wouldl be the best way to parameterize this in a single script?

Entitlement issues Expert day -RESOLVED!

0
0

Hi all,

We are experience entitlement issues so that means it is not possible for you to access the LoadRunner Support Customer Forum, where the online expert day is taking place.

We are investigating the issue and trying to resolve it as soon as possible.

Apologize for the inconvenience.

Greetings,

Bill

Unable to convert (Encode) Arabic (non english) values in web(HTTP\HTML) protocol loadrunner

0
0

Arabic value are passing like corrupted below format in loadrunner edittor

Loadrunner value: رÙ\x81عه مرزÙ\x88Ù‚ محمد ال مشعيwPY9zuXi

But same value passing in loadrunner screenshot in the below format: $#1575;$#1604;$#1582;$#1575;$#1605;$#1587;$#1577;

How to encode or decode above screenshot value and pass it to in loadrunner.

Tried in below convert web functions but not able to convert in correct format

web_convert_param("Arabicvalue", "SourceEncoding=HTML", "TargetEncoding=URL", LAST);

web_convert_param("Arabicvalue", "SourceEncoding=HTML", "TargetEncoding=PLAIN", LAST);

Requesting your help to solve this issue.

Regards,

ManojThota

Security Violation SV 02 error

0
0

I have done parametrisation for multiple username and password. Security Violation SV 02 error is occuring after login  using second username and password. The script has passed for first username and password.

Naina 


Test the latency in the client side due to Citrix

0
0

How can we check the latency in the client side due to Citrix when running the load test with Load Runner.

 

Need some help on the Parameter

0
0

Hi All,

I would like to seek some advice in terms of scripting some of scenario as I'm not familiar with Loadrunner.

 

Let's say I have a script using TruClient Web that is good to go (result is ok) on the following:

1. Login using user1/password1

2. click on the search and keyin parameter1 and click ok

3. search shown and logout

 

My question is if I want to use the above script during the load as 2 VUsers, the first user is using the above parameter and the 2nd VUser is using following:

1. Login user2/password2

2. click on the search and keyin parameter2 (instead parameter1) and click ok

3. search shown and logout

 

Any idea how this can be done? or is there a way that I can test those in one script?

Please forgive me if this question has been asked so many times, if not could you point me to the documentation/youtube video for explanation.

 

Thank you

how to write each iteration status is pass or fail in excel using loadrunner

0
0

Hi Team,

Please help me i want to write each iteration results into excel/csv file which is used for parameterization testing.Please help me how to write each iteration status is pass or fail in excel using loadrunner ,here i am using web services scripting.

How to pass test data dynamically changing soap input parameters

0
0

Hi Team,

I am trying to develop web services scripting in vugen but here i want to  pass test data dynamically as soap input parameters are changing like as below,bze at a time on POS WE CAN SWIPE MULTIPLE CARDS all cards values are going under this reqs input parameter as below examples.How can i work with this type of requests in virtual user generator scripts.

Single Request:

<ReqDtls>
<vReqs>
<amount>1.00</amount>
<cardNo>8897654778999</cardNo>
</Reqs>
<cardType>caredit</cardType>
</ReqDtls>

Multiple Requests:

<ReqDtls>
<vReqs>
<amount>1.00</amount>
<cardNo>8897654778999</cardNo>
</Reqs>
<vReqs>
<amount>2.00</amount>
<cardNo>890897654778999</cardNo>
</Reqs>
<cardType>caredit</cardType>
</ReqDtls>

How to handle browser cache for Web-Http/Html Protocol?

0
0

Hi, 

I am using Web-http/html protocol for recoding the scripts? I am not able to capture values because of the browser cache? Kindly suggest.

Already I have tried with the folowing steps:

1) Selected Clear Cache on each iteration in Runtime settings-Browser Emulation.

2)Cleared cache from Java Control Panel

Still its not working? Kindly suggest 

Viewing all 3978 articles
Browse latest View live




Latest Images