Does anyone going to the conference want to share a room in the Yacht and Beach Club or one of the resorts adjacent to it? The rooms have 2 queen/king beds so...
372
Sergey Isakov
IsakovS@...
Oct 5, 2000 12:02 pm
Hi there, I have a problem, which is rather consitent. I use LR 6.0 for the web testing. After preparing the scripts via Vugen and playbacking them, everything...
373
Daniel Tucker
daniel.tucker@...
Oct 5, 2000 12:15 pm
Sergey, I'm not exactly sure of the problem, but I would try running the register_vugen.bat file located in the LoadRunner/bin directory, and then restarting...
374
Anant Hariharan
anant_hariharan@...
Oct 5, 2000 1:07 pm
Sergey, LR 6.0 is an unstable version, I had numerous problems with it, trying upgrading it to 6.02, or 6.5 which more stable. Download the patches from...
375
niranjaa@...
Oct 5, 2000 1:11 pm
Hi all, Does anybody know how LoadRunner capture a HTTP request which is comming from the web server but not interprit by the web browser as any form of UI...
376
Anant Hariharan
anant_hariharan@...
Oct 5, 2000 1:46 pm
Niranja, Try web_save_header() function, you can then output the header or validate it further. -Anant ... __________________________________________________ ...
377
niranjaa@...
Oct 9, 2000 10:47 am
Hi Anant, Thanks for your reply and I used web_save_header() function to capture the header and was a succes. But I'm in a trouble again. I do not know how to...
378
niranjaa@...
Oct 9, 2000 12:18 pm
Hi all, Does anyone know how to view the run time log files after a test script run which has several vusers in the LoadRunner controler? In Vuser generator,...
379
JeffBohner
Jeff.Bohner@...
Oct 9, 2000 12:31 pm
Each vuser creates a log file within the test directory on the client on which it runs. Merely identify the test directory for the test you ran (this is the...
380
Anant Hariharan
anant_hariharan@...
Oct 9, 2000 1:12 pm
Niranja, There are two ways to do it, the first one is while the scenario is being executed you can right click the vuser, whose log you want to view and...
381
Anant Hariharan
anant_hariharan@...
Oct 9, 2000 1:24 pm
Niranja, You can use the file I/O function to write to a ascii file, or you can out put to the controller messase window, e.g; web_save_header...
382
Anant Hariharan
anant_hariharan@...
Oct 9, 2000 1:28 pm
Replace lr_review_string with lr_eval_string in my previous reply... ... __________________________________________________ Do You Yahoo!? Yahoo! Photos -...
383
Anant Hariharan
anant_hariharan@...
Oct 9, 2000 1:39 pm
Replace lr_review_string with lr_eval_string in my previous reply... ... __________________________________________________ Do You Yahoo!? Yahoo! Photos - 35mm...
384
Babu Lakshmanan
blakshma@...
Oct 10, 2000 5:31 am
Hi all, *The Vuser template, that I work with it, is COM/DCOM. *The LR 6.5 installation is performed from the original CD and finished successfully. The...
385
Iyappan Rathinasabapa...
eyeupn@...
Oct 10, 2000 6:54 pm
Hi I am using the web_find method to check if a particular text is available in the page that is being displayed. if the text is found then i would like to...
386
ssylve1445@...
Oct 10, 2000 9:10 pm
I am not sure that you can output text to a window when LoadRunner is runnning. Your code is writing the results to the test log for the vuser. Stephanie ...
387
Iyappan Rathinasabapa...
eyeupn@...
Oct 10, 2000 9:42 pm
thanx stephanie what i am trying to get to is how do i get the return value that web_find generates to the variable focus that i have defined as a character i...
388
Anant Hariharan
anant_hariharan@...
Oct 10, 2000 11:34 pm
I think your code is OK, Make sure you have turned on the verification check options in the run time setting -Anant ... ...
389
Anant Hariharan
anant_hariharan@...
Oct 10, 2000 11:37 pm
Stephanie, lr_output_message does send the ouput to the controller output window at runtime. -Anant CPS (LR-Web) ... ...
390
Richard At Lee Systems
richard@...
Oct 11, 2000 2:50 am
First, declare focus to be int. Look in the header file, lrun.h, for the value of LR_PASS and LR_FAIL. They are integer values 0 and 1. There are many...
391
ssylve1445@...
Oct 11, 2000 1:02 pm
It appears that no one is allowed to submit responses to the user group unless they are absolutely correct. No one is allowed to give incomplete or make any...
392
ssylve1445@...
Oct 11, 2000 1:10 pm
I obviously misunderstood which output window he wanted to use. I thought he wanted LoadRunner to stop and display a pop-up output window. Thanks for the...
393
Iyappan Rathinasabapa...
eyeupn@...
Oct 11, 2000 2:38 pm
Thanx Stephanie, Anant and Richard i did declare int focus ; or char focus; trying this statement focus = web_find("Text...
394
Stephanie
ssylve1445@...
Oct 11, 2000 3:03 pm
Iyappan, I ran the following code in the vgen and it worked. char focus; focus = web_find("Text Check","what=eyeupn@...",LAST); lr_output_message("The...
395
Stephanie
ssylve1445@...
Oct 11, 2000 3:12 pm
Sorry I forgot to take off the quotes and curly brackets in the code I sent. Remove the quotes and curly brackets from around focus in the lr_output_message...
396
Iyappan Rathinasabapa...
eyeupn@...
Oct 11, 2000 4:22 pm
Stephanie thanx - it worked great i guess i need a workaround for one small step the lr_output_message("The output message is %s",focus); (the quotes and curly...
397
sujithmenon@...
Oct 11, 2000 5:17 pm
Hi, Iam new to LoadRunner. We are using LR 6.5 and Web vusers. Is there any way to set the iterations of GUI vusers(WR) from the LR Controller? (Similar to the...
399
Richard Ellison
richard@...
Oct 11, 2000 7:01 pm
Here's a cleaner version to copy and paste: #include "as_web.h" int focus=10; char dat_val[10]; /* */ int i = 0; /* loop count to initialize char array to...
400
niranjaa@...
Oct 12, 2000 8:37 am
Hi Anant, I use web_reg_save_param function to capture segment of HTML and saved it in to a parameter. eg: web_reg_save_param ("ParamName", "LB=<movie ...
401
Iyappan Rathinasabapa...
eyeupn@...
Oct 12, 2000 2:22 pm
Hi I am trying to display the value using lr_output_message using the following code focus = web_find("Text Check", "What=eyeupn@...","repeat=no", ...