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

Scripting Kronos on Firefox using Loadrunner

0
0

Hi All,

 

I am working on performance testing of Kronos Workforce Central. The application is accessible only using Firefox 26 browser. The current version of Loadrunner that we are using is 11. When I try to do the recording, the application homepage loads, but on providing credentials and hitting the login an error is displayed. It reads as "System error" and at the bottom , there is a red cross symbol with Null written next to it. (Please refer to the screenshot)

 

Have any of you encountered this kind of error? What could be the cause?

 

Any help would be much appreciated.

 

Thanks and regards,

Seema


Load Testing Java Application

0
0

Hi all,

 

I've used the Protocol advisor against a Java App and it came back saying use Java over HTTP or Java Record/Replay.

 

I've tried recording the application using these - Java over HTTP comes back with 38 events and Java Record/Replay will come back with 2005 events, however there will be no code generated, purely defining string variables and that's pretty much it. I've checked the CodeGenerationLog.txt and again nothing has appeared in it.

 

If somebody can point me in the right direction or give me some documentation that will potentially help me with this I would be greatly appreciative.

 

Thanks,

 

---------------

Edit: I'm using LR 12 on a Windows 7 environment, JDK 1.7

LR Controller does not reach load runner agent machine

0
0

Hi

 

We recently upgraded to LR 12.02. The controler was upgraded by one team, I upgraded my load generators myself. Now I seem to have an issue...I can still connect fine from the Controller to the machines with 11.52 LR agent software on them, but if I try to connect from the Controller to the machine that is now equiped with LR generator 12.02, and VuGen 12.02, I get an error! But I am logged into the machine, and the LR agent is running as a process, looks fine!

 

Maybe I made a mistake in the installation of the 12.02 loadrunner agent, I don't know, but any sugestions on what would cause this is appreciated!

March 24rd: LR Expert day. Challenge our Experts.

0
0

Hello Everyone,

 

LoadRunner  is hosting an Online Expert Day on March 24rd, 2015!  Mark this on your calendars!

 

 

If you are a customer with a support contract, then we would like to invite you to join us LoadRunner Support Customer Forum on March 24rd, when HP product Experts will be online for 24 hours to answer any questions regarding:

 

Any topic

 

 

What is an Online Expert Day? 

Online Expert Day is an event when HP product, R&D, and Support team members and other employees join our online forums to answer your toughest technical questions.  Online Expert Days give you a chance to talk directly with the HP Experts!

 

How does the Online Expert Day event work? 

 

HP Experts will be online for 24 hours in the forum and will do their best to answer your questions. They may need to get some more information from you so please check the box "email me when someone replies".  An online conversation will be born!

 

To participate, you do need access to the LoadRunner Support Customer Forum if you don’t have access, please add your Support Agreement ID (SAID) to your HP Passport profile and log in again.

 

If you have a valid support contract and are still experiencing issues, please send an email to swcommunity@hp.com.

 

For more information on our Support Customer Forums and how to add your Support Agreement ID (SAID) to your HP Passport profile, please click here.

 

For upcoming Online Expert Days, please bookmark the HP Software Online Support Services - Forum events page.

 

If you have questions regarding the Online Expert Day event, please reply to this message.

 

We look forward to your attendance and your questions!

 

Regards,

Load Runner 12.0 Compatibility with ALM 11.5

0
0

Need some info on whether Load Runner 12.0 is compatible with ALM 11.5 as many users seem to indicate that they both should be on the same platform. Please confirm...any additional info would be of great help! Thanks!

Does Loadrunner supports CAD Application?

0
0

My Application is a client server based application, In that application I have one module named as CAD (Computer aided design) that contains 2D and 3D designs.

 

For your references here I have mentioned my application flow, After login in to the application it displays a homepage in that page we can see like in the left side some ids if we click one id then in the right side some 2D or 3D image will displays. So, we need to capture this entire flow.

 

When I was trying to click on that CAD module using load runner with odbc protocol (suggested by client) couldn't able to capture that.

 

My question is

  1. Whether Loadrunner supports CAD application?
  2. If it supports,Which protocol can I use to capture the CAD application?

Please give me your valuable suggestion.

ATM simulator recording

0
0

Hi All,

 

I need to Performance testing for ATM simulator installed on my desktop.


Its a java based batch job file. If I invoke that job file,a GUI along with cmd window getting opened. Whatever operations done on GUI, reflecting in cmd.

 

I am very new to this type of testing. I tried to record the batch file using LoadRunner-Java Record and Replay with batch job option.No luck, nothing got recorded, but GUI got opened.

 

Any one of you can provide me the basic information to ahead with this scenario

 

Any help gladly appreciated.

 

Thanks,

Durga

12.02 UI slow when docked to station (dual monitor)

0
0

Hello,

I have lenovo thinkpad. When docked to the lenovo station (using dual monitors) I experience constant lag in the UI while selecting options, marking the text, running the scripts and occasional hangs mainly while running scripts. When undocked it runs without any noticeable latency.
If you need any additional info I will gladly provide it.

Thank you.

Regards,
Kalnius


LoadRunner 12 Virtual Table Server - Making API calls

0
0

I am using the latest release of LoadRunner 12 and the HP Virtual Table Server. We have the VTS configured and working. I am able to successfully create LR scripts that read and write to/from the VTS using the LR functions.

 

Now I am trying to build a JAVA client outside of VUGen. I configured access to the API as per instructions in the HP document guide:

VTS3_Communication_Specification_v1.0.docx

 

When I send a command through the API I can only get back one response:

{"data":null,"status":{"error":"Unexpected token u","code":-20201}}

 

No matter what I send I get that back from the VTS server. I can see that this is a response from the VTS server and it is formatted in JSON, but this is obviously an incorrect response since returning index:1 should return the first row of data from the VTS (and yes, there is data there. I can see it from the VTS GUI).

 

I also created a LR WEB Custom Request formatted to send JSON commands directly to the VTS API. Based on everything I read in HP documentation this should be working. Does anyone know what I'm missing here? Is there some additional setup on the server I need to set to allow access to the API or some kind of additional header?

 

Any help would be appreciated.

 

	web_custom_request("VTS_Command",
		"URL=http://localvtsserver:8888/api",
		"Method=POST",
		"Resource=0",
		"EncType=application/json", 
		"Body={\"cmd\": \"get\"," 
		      "\"version\": \"1.0\"," 
		      "\"data\": " 
		      	"{\"index\": 1}" 
	          "}",
		LAST);

 

This is all I see in the VTS log output each time I get that error:

{"level":"info","timestamp":"2015-02-23T19:19:23.383Z","message":"return: {\"data\":null,\"status\":{\"error\":\"Unexpected token u\",\"code\":-20201}}"}

 

 

 

what is "Total Transactions Number"

0
0

In Loadrunner Generated pdf Reports > Under Workload Characteristics > what is "Total Transactions Number"

 

Please find the attached screen shot for the same

failed - end event error due to network timeout [MsgId: MERR-203252] [MsgId: MERR-203252]

0
0

Hi,

 

We are facing above error after running the script in BSM.

We have recorded the script in LR 11.52  using Ajax True Client - Firefox and uploaded the script in BSM 9.23

After running the script for an hour we have checked the report and saw that error like 'failed - end event error due to network timeout [MsgId: MERR-203252] [MsgId: MERR-203252]  '.  i have set the wait time and done the changes in replay setting also but facing the issue same. So please help us to resolve the issue.

 

Regards,

Praveen.

File Upload error

0
0

Hi,

 

I am facing an issue during replay for a script which is developed to upload an XML file.

Below is uploading request:

 

web_submit_data("upload", 
        "Action=XXX/upload/", 
        "Method=POST", 
        "EncType=multipart/form-data", 
        "TargetFrame=", 
        "RecContentType=application/xml", 
        "Referer=", 
        "Snapshot=t4.inf", 
        "Mode=HTML", 
        ITEMDATA, 
        "Name=AA SERP XML Full Mailing.xml", "Value=serp706198098854379739.xml.gz", "File=Yes", ENDITEM, 
        LAST);

 

Error:

Error -26488: Could not obtain information about submitted file "C:\Users\username\Desktop\scriptname\serp706198098854379840.xml.gz"    : _stat32 rc=-1, errno=2 [No such file or directory]. Using an empty file

 

Please help, why script path is recorded as "serp706198098854379739.xml.gz" and solution for this.

 

 

 

 

BPM script using SSO/ADFS for authentica​tion

0
0

Hello,

 

In our company, we have more and more applications using SSO/ADFS for authentication.

Unfortunately, with our monitoring service provider, we can't use web-http/html as protocol in VUGen because we didn't find the correct correlation to handle the SSO/ADFS authentication.

 

So, we use TruClient Firefox as protocol but :

- A script written with TruClient Firefox fails from time to time (we have developped a scenario for the same application in TruClient Firefox and web-http-html and the second scenario never fails.)

- The response time is more relevant in web-http-html protocol rather than TruClient protol.

 

So, it's should be nice to improve the TruClient protocol and to understand why a scenario written with this protocol fails randomly from time to time. And it's should also be nice to find a way to use web-http/html with applications using SSO/ADFS as authentication.

 

We have try with LR12.00 and BPM 9.24 and 9.24.1 and also with LR12.02 and BPM 9.25 : same problems.

 

Thanks in advance for your answer,

Regards,

Christophe

PC 12.01 - Ajax TruClient IE Script Stalling in Controller

0
0

Hi,
 
I have created a TC IE script in Vugen 12.01. The script plays back fine in Vugen and the Development Mode. However, once I run a test with only this script and 1 vuser, the script halts after completing the second transaction. The user does not fail, abort, etc, it simply stalls. I developed the script on the same LG used in the test, so I know the script works on that machine. I don't get any error messages so it's hard to troubleshoot what the problem is.
 
Any idea what is going on here?
 
Thanks in advance.

Issue with recording in URL Transactions

0
0

HI Experts,

 

I try to record only Urls like "http://www.abc.xx", but it records only transaction start and end only. I am not able to record the URLs.

 

the entire script i should record only urls.

 

I tried in both protocol like Web/HTML.

 

 

Please suggest me how to resolve this issue.

 

Regards,

Srinivas


Issues with RDP Protocol - Network Level Authentication

0
0

Hi,

 

LoadRunner Version 12.02

 

Vugen is not able to RDP a server with "Network Level Authentication" remote setting, the problem is we cannot modify those setting since that configuration is a security policy. so I was wondering someone in the past has faced this issues and has a workaround where Vugen is able to deal with this configuration? any guideline will be appreciate.

 

Thanks

Cesar Resendiz

vugen 11.52 "run-time viewer" not working during replay (on my machine)

0
0

Vugen 11.52 "run-time viewer" not working during replay (on my machine)

 

I switch on it via "Tools->Options->Scripting->Replay->show run-time viewer but it still not showing anything. Even a tab is not started. 

 

On the other PC this script replaying without any problems with run time viewer tab (we checked all General/Editor/Scripting/ settings, they are equal on both PC)

 

I tried to reinstall the vugen and analysis, but the result is the same.

 

i suppose, i should register some dlls manually, or smth. like this.

 

Truclient script failing for Second iteration in PC11.52

0
0

Hi

 

I am faing issue while running truclient script in PC11.52. 

 

In performance center script runs successfully for single iteration and for second itration it fails.

 

Tried to run the script in VUGEN and it runs sucessfully for multiple iteration.

 

For second itration,it  is showing "Timed out " error for Home page load tranaction.It takes less than 15 sec to load the home page.

 

Please suggest what shoud be the possible reason of this behaviour during exeuction of script.

Any leads to solve the same is appreciated.

 

Thanks

Mayur

 

 

 

 

Vugen/BPM Script to Simulate SharePoint End User Experience

0
0

Hi,

 

we have recently been working on a Vugen/BPM script to simulate end users using our SharePoint based Intranet site.

 

We have tried different combinations of the Web - HTTP/HTML protocol, but the results do not always correlate with what end users are reporting.

 

We also have a requirement to test the performance of the Intranet site accross different browsers. Again when we use browser emulation in the script we are not seeing the same results as real life users. For example the Intranet site runs quicker in Chrome compared to IE9 but this does not show up in the results from the BPMs. The results show very little differnce between browsers.

 

Just wondering if anyone had any advice/experience or any tips/tricks on the above.

 

Thanks in advance,

 

Mathew

306|error|500|Validation of viewstate MAC fail

0
0

Hi All,

Could you please help me on the below error I am getting while replaying my script:

306|error|500|Validation of viewstate MAC failed. If this application is hosted by a Web Farm or cluster, ensure that <machineKey> configuration specifies the same validationKey and validation algorithm. AutoGenerate cannot be used in a cluster.

 

Please suggest ways to mitigate this issue. I have correlated the viewstate, what additional steps needs to be taken to solve this issue.

 


Its a bit urgent. Please reply fast. Appreciate your help.

 

Warm Regards,
Koushik

Viewing all 3978 articles
Browse latest View live




Latest Images