Ashok K.

  • 3 questions asked
  • 0 answers
  • 0 best answers (0%)
  • Request to run parallel

    I have a scenerio where only 1 trasaction is there and that is having 1page and 5 request to that page. As part of my test, i want to run all 5 request parallelly for...
    Ashok K.
    Ashok K.

    Ashok K.

    Level
    0
    2 / 100
    points
    Nouredine A.
    Nouredine A.

    Nouredine A.

    Level
    4
    5000 / 5000
    points
    Team
    By default the first request under a page is executed and the rest is run in parallel. But it may also depend on the type of requests and if the response of the first request is...
  • How to handle dynamic value based on the loop?

    Please help me with this. I have a container and am giving a loop count to iterate it. Is there a way to capture the dynamic value each time based on the loop iteration count...
    Ashok K.
    Ashok K.

    Ashok K.

    Level
    0
    2 / 100
    points
    Nouredine A.
    Nouredine A.

    Nouredine A.

    Level
    4
    5000 / 5000
    points
    Team
    A variable extractor is not executed multiple times unless you duplicate it of course but in your case the best would be to extract once and use a Javascript to duplicate that...
  • How to handle dynamically changing JSON request based on loop we run in previous transaction?

    My JSON request is like ABC=[{xyz}, {xyz}, {xyz},.....n ] I want to pass this based on previous transaction loop count. ex: if am running...
    Ashok K.
    Ashok K.

    Ashok K.

    Level
    0
    2 / 100
    points
    Nouredine A.
    Nouredine A.

    Nouredine A.

    Level
    4
    5000 / 5000
    points
    Team
    I guess you need to use a Javascript that will format your request based on the loop count and this is prior to execute your requests.