Posts

Showing posts from July, 2019

Android native app scripting with LoadRunner

May 4 2019 There are a lot of ways to generate vugen script for your native android app.  I was using an app which had ssl encryption and used json requests and I followed the below to create script in Vugen. THIS DOESN'T NEED TO ROOT YOUR DEVICE. 1) Install app on a real android device 2) Install HTTPCanary app from playstore 3) Follow the onscreen steps to install the app and install its certificate and allow all the required access 4) From settings define the filter to select the app you want to capture packets 5) Start the recording and leave it to run. This will capture all packets from the test app even when minimized 6) Open the test app and perform transactions. 7) Open HTTPCanary and stop the recording. This will generate multiple captures for the test app. These will be sorted as per time so that helps you to understand the sequence. Each capture contains one request and the corresponding response. 8) Open each capture which will show you the request/response/...

Tips and Tricks for - Oracle JDE (enterprise one) performance scripting using LoadRunner:

4 May 2019. There are not much information available as to how you can create vugen script for JDE packaged application. Recently I completed a JDE performance test and below are my recommendations. 1) The following values need correlation (there may be others depending on the scenario flow but these are the key ones):      a) E1MAINMENU_<dynamic number>      b) RID      c) jfasxxxcacheUID (sorry can't remember the name correctly)      d) dummyparam (this one is optional as I have seen it works sometimes without correlating this   2) Most of the time you will see that some of your next transaction may have requests from the previous transaction. Put comments and manually move requests to correct it. I still don't know why it's happening. (Let me know if you know a better approach :) !!! 3) The most annoying issue for me was when I placed launch/login and logout into init and end sections it always faile...