How can I cast an extracted variable type timestamp to type date?
This kind of Javascript should convert a timestamp to a date format:var myvalue = context.variableManager.getValue("Extracted");// Extracted is your variable extractor namevar mydate = new...
View ArticleHow to modify all occurrence of the extracted variable?
In the variable extractor panel you have an option called "Value is encoded". If you choose the custom item in the drop down list you can edit a Javascript in order to modify your extracted value on...
View Articleany way to automatically update json in request body when the application is...
Did you try the User Path Update feature ? (Click 'New recording of' in the Start Recording dialog). This feature allows you to merge the new recording with the previous extractors, injected data,...
View ArticleNot able to record neoload transaction using selenium
Hi,I think you do not need the first part of the java file where Transactions delays are created with the UserPathBuilder, you just need the Selenium part. Please find the cleaned java class in...
View ArticleExtracted variables in js scripts
Update: Ironically that's what I replaced 'myvalue' with exactly. I used 'max' during my tshooting of your script. I actually was on my home computer so I didn't have the...
View ArticleString Concatenation & Base 64 Encoding of Concatenated string
You can look at that POST here that contains a project with an example of JS to encode/decode in base64.You can call your variable extractor value using the "context.variableManager.getValue("myVar")"...
View ArticleUserpath is created in Neoload using selenium But NO transactions are present...
An additional property should be added for enabling the proxy on InternetExplorerDriver. Can you try with the following code for driver initialization:DesiredCapabilities capabilities = new...
View ArticleHow to make the parent thread wait until a step in a fork is completed?
Dear Michael, you should use a "Wait for" action that waits that a variable value has changed with the expected value. Use an extractor in the last request of the asynchronous step.
View ArticleTransaction are not received in neoload, made by selenium script (executable...
In order to create a NeoLoad User Path containing your Transactions, the jar need to be launched outside of NeoLoad (but with a NeoLoad opened) in Design mode.For example in a cmd:java -jar...
View ArticleHow can I add an authorization header with an HTTP Get call?
After lots of trail and error - I was able to answer my own questions. Posting answers, incase anyone else has the same questions.1) For the first Http Request, basic authentication can be defined...
View ArticleAutomating co-relations with help of framework, How it works ?
The framework are applied sequentially. So if you save your framework rules in the right order they will be applied in the same order.
View ArticleHow to extract value from ?
In NeoLoad you aren't trying to parse out objects in the DOM, rather you just need a regular regex expression that includes the text directly left (and then right) of the text area. I.e. your regular...
View ArticleJavaScript action changeValue - how to set the value?
You can't specific which value you would like. This method will force the variable to jump to the next raw of your variable despite the default change policy.So if based on your variable policy row n...
View ArticleOracle forms recording, request content appears encrypted and the...
Have you loaded the NeoLoad Root certificate in your browser? You have the procedure available in the NeoLoad documentation hereI can't reproduce your issue on my side. I tried to record your...
View ArticleHow can we run Sequentials User Paths
Use the advanced settings for the population. Start the Virtual Users one after another using the sequential VU Start.
View Articlehow to create script in neoload.
When the browser opens with the recording page, the next step is to enter your URL to test in the URL bar of the browser, i.e. browsing normally with your browser.For the next recording, the URL will...
View ArticleHow to use variables' value in my java-script in neload?
Hi Andrew,For Table/File variables the syntax for context.variableManager.getValue() is {CSV_Variable_Name}.{ColumnName}Ex: getValue("Accounts.login")
View ArticleRecording with https hosted javascript ERR_INSECURE_RESPONSE
This "ERR_INSECURE_RESPONSE" message seems still related to certificate error. If you record any HTTPS website with NeoLoad do you get certificate warning from the browser? For example you can try with...
View ArticleHow to do a Continous Test?
It turns out that NeoLoad 6.2.0 and new NeoLoad Web version are now available so you should be able to test Trends feature right away with your current NeoLoad version.
View ArticleHow to check a User Path through Command Line
Not directly, but you can create a Scenario with 1 User in 1 population for 1 Iteration of a 1 VU constant load and call it from the command line (or Runtime API).
View Article