sergei
Administrators-
Content Count
718 -
Joined
-
Last visited
Everything posted by sergei
-
Dynamic variable not created for __OSVSTATE in profile
sergei replied to vprashanth23's topic in How to solve my problem
WAPT can't always parameterize all dynamic values properly. If it has a doubt, it doesn't parameterize such value. In this case you need to parameterize such value manually. Could you give me your profile or send it to support@loadtestingtool.com? -
How to have desired number of sessions for an user?
sergei replied to vprashanth23's topic in User Session Emulation
Usually in such case you should not use user ID twice during test session. For example, do not use the same login name twice. You need to do that your virtual user uses new user ID for each new session iteration. -
How to assign user specific values for load test
sergei replied to Pooja joshi's topic in User Session Emulation
Hi, Could you give me your profile or send it to support@loadtestingtool.com? -
Unable to upload file through script for mobile application
sergei replied to Pooja joshi's topic in How to solve my problem
Yes, it's possible. In your case you need to put the additional headers inside the parameter name using $Var function. -
You need to use "Do not follow redirect" option for the first request of a chain. It will prevent WAPT to follow redirect. Then you need to create requests for redirects manually using URLs from Location header. In this case you will be able to process responses for these requests.
-
Do you use internal browser for recording? Please try to use external Chrome browser for recording and check the proxy settings in browser during recording. The settings should point to WAPT recorder proxy.
-
Response Times of Applications using Web Sockets
sergei replied to avin_mehya's topic in How to solve my problem
Ok, we will add this feature in the next version. You can use JavaScript to calculate response times and save them to a file. -
Response Times of Applications using Web Sockets
sergei replied to avin_mehya's topic in How to solve my problem
Hi, Due to asynchronous nature of WebSocket, Send and Receive are not linked together. What do you mean by response time for WebSocket? -
Include use of variable in Search Parameter Boundries
sergei replied to Pooja joshi's topic in Proposed Changes
Hi, You can use JavaScript processing. Here is the code analogous to the “Search Parameter” function: var str = context.responseBody;//input var left = context.variable("left");//left boundary var right = context.variable("right");//right boundary var leftIndex = str.indexOf(left); var rightIndex = -1; if(leftIndex != -1) { rightIndex = str.indexOf(right,leftIndex+left.length); } if(rightIndex != -1) { str = str.slice(leftIndex+left.length,rightIndex); context.variable("str")=str;// return string } -
Hi, Could you give me your profile or send it support?
-
LoadAgent error: The specified network name is no longer available.
sergei replied to vijayjadav's topic in Other Problems
Possibly, Load Agent crashed. Try to use the latest version of WAPT Pro. -
Can't get GWT parse info when creating GWT testcase
sergei replied to Martin's topic in How to solve my problem
Hi, Could you give me your profile, *.jar and *.gwt.rpc files? -
Unfortunately, you attached scenario file only. Please, attach profile file with .wpp extension.
-
It isn't possible to share variables between profiles in the WAPT itself. Try to redesign your test and merge both profiles into the one. Or try to use JavaScript and an external file.
-
You need to use the $JPath function. It is not trivial but possible. XPath //*[assignedToUser/@type=null] return you all three elements with "assignedToUser" : null. XPath //*[assignedToUser/@type=null][1] return you the first element with "assignedToUser" : null. So for courseID you can use $JPath(//*[assignedToUser/@type=null][1]/application/course/id,NO). For applicationID you can use $JPath(//*[assignedToUser/@type=null][1]/application/id,NO). For approvalID you can use $JPath(//*[assignedToUser/@type=null][1]/id,NO). If it will not work for you, perhaps, you need to upgrade to the latest version of WAPT to use that.
-
Did you get this message before? Try to use the latest version of WAPT Pro.
-
Accessing Profile Name as A Variable
sergei replied to JohnPMurray's topic in How to solve my problem
There is no way to get the profile name from within the profile. Why don't you want to use an initial variable with the profile name? Please, describe your needs more carefully maybe I will be able to offer some solution. -
Accessing Profile Name as A Variable
sergei replied to JohnPMurray's topic in How to solve my problem
Unfortunately you can't get a profile name from within the profile. You can create an initial variable with the profile name and use it whenever you need. -
Can i automate FTP upload using WAPT
sergei replied to avin_mehya's topic in How to solve my problem
Try to execute following code: var command = "D:\\welcome.bat" var argument = ""; var shellapp = new ActiveXObject("Shell.Application"); shellapp.ShellExecute(command, argument, null, "open", 1); -
Try to use the latest version of WAPT.
-
Please, try to delete registry key HKEY_CURRENT_USER\Software\SoftLogica\WAPT Pro\FirefoxPlugin
-
Please, try to enable or reinstall plugin.
-
Can i automate FTP upload using WAPT
sergei replied to avin_mehya's topic in How to solve my problem
WAPT doesn't support FTP protocol. But you can use JavaScript to run shell command and upload file to FTP with help of third party tool. -
You can convert your push request to streaming request. Just select it and click on Convert To Streaming in right click menu. Streaming request will be executed in parallel.