How can I locate and check the UI controllers?
You can insert validations on responses that perform text checks. for example check for this<type=input, name=cancel_button, text=Cancel>However, Neoload is a performance test tool, this should...
View ArticleProxy settings issue?
You are supposed to get that page. You then navigate to your site from here
View ArticleWhy am i having an error to configure my git connection in NeoLoad using ssh...
NeoLoad uses Jsch for the SSH interaction with git. The key point is that You need to generate a key pair in a PEM format.This error usually occurs when the header format of the private key is not RSA...
View ArticleWhen an error occurs in an iteration, the pacing time is getting neglected....
By default the pacing is not used in case of error. But this can be configured in the NeoLoad preferences under Project settings tab and Runtime parameters section.
View ArticleJavaScript libraries
If you are talking about the new library included in NeoLoad 7.1 it is documented here Otherwise you can drag and drop a Javascript action in your user path and call your function from that Javascript....
View ArticleFunctions in Loop Settings
I could verify the the function works well with Loops (checked in NeoLoad 7.2), you should have missed something.
View ArticleHowto replace dynamic parts in a binary POST request content?
I've noticed that sometimes Neoload is identifying text as binary, you just need to change the post type to text
View ArticleHow to edit request headers?
Ok i think that the issue is due to the comma inside your cookie value.Please try the procedure below:Stop NeoLoadEdit <NeoLoad_install_dir>\conf\controller.propertiesGo to [Runtime] section and...
View ArticleWhere is the LoadRunner Script Converter?
Hi Doug,The converter is no longer available by default for a self-service usage. As it requires a global strategy and advices on converting the LR scripts, I recommend you speak to your Neotys contact...
View Article"ERROR...
What is exactly the issue on the user path when you replay your script? What kind of errors do you get?This stack trace is related to the communication layer transport between controller and LG. It...
View ArticleIs there a way to use dynamic file names mapped to variables?
Why wouldn't this work ${${branch_file}.value}?
View ArticleIs it possible to set up offset in date parameter with working days only
// Get Now var theDate = new Date(); logger.debug("The date is: "+theDate); // Slice up date (Month runs 0-11 in Java) logger.debug("The Year: "+theDate.getFullYear()); logger.debug("The Month minus 1:...
View ArticleHow to validate empty variable using a condition?
How about...MyVar ‘not equal to’ and just leave the field on the right blank
View ArticleHow to extract messages on WebSocket channel ?
I created a quick video showing you both methods applied at the same time but of course you should use one or the other.Basically the first method is to create a variable extractor at the channel...
View ArticleI complete a form (method = ‘post’) to add a new product. In my project I can...
So, just to be clear, this isn’t a screenshot from your application?You need to provide details from your apps recording, have you tried using the flag function on a request definition and searching...
View Articlejavascript to Decode JWT token
Hi, you might want to check out this post.... http://answers.neotys.com/questions/1202679-base64-encoding-text-post-request
View ArticleWhy do i only see empty_request when i record my Oracle Forms application?
In order to record Oracle Forms application with NeoLoad, the Oracle server has to be configured in Servlet mode (ie HTTP mode), the frmall.jar file has to be copied into the NeoLoad installation...
View ArticleUnable to capture SAML response
The SAML value contains return carriages so it's a multi lines value.In your variable extractor panel if you switch to advanced mode and use this regexp it should do the trick:NAME="SAMLResponse"...
View Articlecan we only select required api's from swagger while importing into neoloado
NeoLoad does not provide a way to select individual requests after importing a swagger file but it could be the subject of an enhancement request.Feel free to post an idea on our feedback portal here
View ArticleI want to add header parameter with empty value ?
That blank seems normal as it is expected by the RFC and looking at browser requests it's also there.Are you sure that your request does not have the same behavior in NeoLoad because of that?If you...
View ArticleVariable extractor from REST API Response
The screenshot doesn’t match your question but it doesn’t matter, it there is no ending the just leaving it blank is fine, it should go until the carriage return (aka new line)
View Articlehow can I disable encoding values into GET URL?
Your value contains some characters like "<" that have to be encoded and our HTTP client won't accept that value in the request URL if it is not encoded.But your server should be able to accept the...
View ArticleHow to solve nl-api-key-not-allowed?
This error occurs when your controller is configured with an API key but you did not send it when you called the API. So look at your controller settings under General Settings-->REST API and use...
View ArticleHow can i get the number of rows of a File variable?
You can get that information using the Javascript below:var size = context.variableManager.getSize("FileVariable");logger.debug("size="+size);
View ArticleHow to Update and parameterize POST parameters where the post content type=text
You can create a variable in the variable manager of type current date, name it something like 'timeMillis', the format will be milliseconds from the format list, you can then just modify your payload...
View Article