Neil W.

  • 0 questions asked
  • 803 answers
  • 92 best answers (11%)
  • Selenium Script Parameterization to achieve Unique Users

    Hi, I am working on Selenium script and planning to execute this with multiple users using NeoLoad. Could anybody let me know if you have achieved unique user parameterization...
    padmaja A.
    padmaja A.

    padmaja A.

    Level
    0
    1 / 100
    point
    Neil W.
    Neil W.

    Neil W.

    Level
    4
    5000 / 5000
    points
    Team
    I’ve not tried this but why can’t you pass in parameters from Neoload to Selenium?
  • how can i update the variable during application working

    Hi, I create a command line action and this action create random number and write into the a.txt file. After that I can catch this random number in a.txt file with variable...
    Enes E.
    Enes E.

    Enes E.

    Level
    0
    43 / 100
    points
    Neil W.
    Neil W.

    Neil W.

    Level
    4
    5000 / 5000
    points
    Team
    I would look at the javascript variable in Neoload then, it looks like and is treated as a variable but actually it is running some javascript code. This code could access the...
  • how can i update the variable during application working

    Hi, I create a command line action and this action create random number and write into the a.txt file. After that I can catch this random number in a.txt file with variable...
    Enes E.
    Enes E.

    Enes E.

    Level
    0
    43 / 100
    points
    Neil W.
    Neil W.

    Neil W.

    Level
    4
    5000 / 5000
    points
    Team
    I understand that and yes, you can update the file during the test in the first action but Neoload has already read in teh file content and cached it so subsequent updates wont...
  • Verify Modifier not correctly run

    -I'm running the jar file with command line -Jar update a text file. -Modify variable, -Use variable. But when using the variable, Takes the previous text. Not...
    Enes E.
    Enes E.

    Enes E.

    Level
    0
    43 / 100
    points
    Neil W.
    Neil W.

    Neil W.

    Level
    4
    5000 / 5000
    points
    Team
    I have responded to your other post: http://answers.neotys.com/questions/2213173-can-update-variable-application-working
  • how can i update the variable during application working

    Hi, I create a command line action and this action create random number and write into the a.txt file. After that I can catch this random number in a.txt file with variable...
    Enes E.
    Enes E.

    Enes E.

    Level
    0
    43 / 100
    points
    Neil W.
    Neil W.

    Neil W.

    Level
    4
    5000 / 5000
    points
    Team
    okay, so you cannot update the content of the file, when the test is ran, the file content is read in at the beginning of the test and held in memory so it is effectively static...
  • Verify Modifier not correctly run

    -I'm running the jar file with command line -Jar update a text file. -Modify variable, -Use variable. But when using the variable, Takes the previous text. Not...
    Enes E.
    Enes E.

    Enes E.

    Level
    0
    43 / 100
    points
    Neil W.
    Neil W.

    Neil W.

    Level
    4
    5000 / 5000
    points
    Team
    Sorry, you need to provide more detail in your questions
  • NeoLoad doesn't record every page in my test?

    I started recording in NeoLoad starting with the Login page of our test Portal and then after logging in and drilling down through the portal I logged out. On reviewing the...
    Laurie C.
    Laurie C.

    Laurie C.

    Level
    0
    12 / 100
    points
    Neil W.
    Neil W.

    Neil W.

    Level
    4
    5000 / 5000
    points
    Team
    Hi Nouredine, we have a called planned for tomorrow morning, hopefully we will get to the bottom of the issue there, will let you know
  • NeoLoad supports Windows services? Can we monitor the performance of windows services using NeoLoad?

    We are using multiple windows services in our project. These services are peeking up the messages from the queue and dump into the database. Can we measure/monitor the...
    hansa C.
    hansa C.

    hansa C.

    Level
    0
    1 / 100
    point
    Neil W.
    Neil W.

    Neil W.

    Level
    4
    5000 / 5000
    points
    Team
    I assume the services are further down the applications architecture like browser to app server to MQ to database, etc. While Neoload's main function is injecting load via the...
  • How to extract the ScriptName in the Javascript.

    In the Javascript, would like to extract the script name dynamically during runtime to write to the csv file.
    Lisa B.
    Lisa B.

    Lisa B.

    Level
    0
    6 / 100
    points
    Neil W.
    Neil W.

    Neil W.

    Level
    4
    5000 / 5000
    points
    Team
    ...the vu_name is the script name
  • How to extract the ScriptName in the Javascript.

    In the Javascript, would like to extract the script name dynamically during runtime to write to the csv file.
    Lisa B.
    Lisa B.

    Lisa B.

    Level
    0
    6 / 100
    points
    Neil W.
    Neil W.

    Neil W.

    Level
    4
    5000 / 5000
    points
    Team
    Hi, try this: var theVU_id = context.currentVU.id; var theVU_name = context.currentVU.name; var theVU_pop = context.currentVU.getPopulationName(); var theLG_id = context...