manal C.

  • 10 questions asked
  • 3 answers
  • 0 best answers (0%)
  • Error Adobe Flex

    I recorded a script using AMF/Adobe Flex. When i check it, i get the following error: Error 500: javax.servlet.ServletException: java.lang.RuntimeException: java.lang...
    manal C.
    manal C.

    manal C.

    Level
    0
    47 / 100
    points
  • how to fix a Iso message arrives with another bitmap to the server?

    I sent an ISO 8583 with neoload, but the problem is that the server don't receive my bitmap, it receives a message with another bitmap. How to fix this issue? Thanks for your...
    manal C.
    manal C.

    manal C.

    Level
    0
    47 / 100
    points
  • How to resolve webSocket connection error in an iso8583 scenario?

    I have an iso 8583 scenario. The connection with server is done, but the issue is when i send a message i get this error "Socket connection needs to be done before null". I...
    manal C.
    manal C.

    manal C.

    Level
    0
    47 / 100
    points
  • Comment envoyer un message iso 8583?

    j'ai un scénario qui permet d'envoyer un message iso 8583, J'ai réussi à me connecter au serveur avec neoload, le problème est dans l'envoi du message. normalement un message...
    manal C.
    manal C.

    manal C.

    Level
    0
    47 / 100
    points
    manal C.
    manal C.

    manal C.

    Level
    0
    47 / 100
    points
    Merci Fousseyni
  • Comment éviter un appel double?

    Lors de la validation de mon scénario, j'ai un appel qui se répète deux fois, ce qui me pose des problèmes. Est-ce qu'il y a un moyen pour éviter l'appel double?
    manal C.
    manal C.

    manal C.

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

    Nouredine A.

    Level
    4
    5000 / 5000
    points
    Team
    Pourriez-vous donner plus de détails concernant cet appel double ? Est-ce une requête dans le script qui est en double ? Pourriez-vous fournir une copie d'écran ?
  • How can i execute document.createElement and document.body.apprendClid on JS Library?

    I have JS Function and i want to execute it in library JS of Neoload, the issue is that the function contains "document.createElement("form")" and "document.body...
    manal C.
    manal C.

    manal C.

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

    Nouredine A.

    Level
    4
    5000 / 5000
    points
    Team
    You cannot access browser objects so you have to understand what the function is doing and replace this calls in your JS so they do not depend on browser objects.
  • Comment je peux résoudre le problème de freeMarker?

    dans un scénario, il faut vérifier une variable (actionName) avant d'afficher le menu, dans mon cas neoload n'arriver pas à vérifier cette variable. sachant que la variable est...
    manal C.
    manal C.

    manal C.

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

    Nouredine A.

    Level
    4
    5000 / 5000
    points
    Team
    Le souci doit provenir d'un paramètre dans votre requête d'authentification ou celle d'après qui n'est pas correcte. Il faut comparer les requêtes renvoyées lors de la...
  • How can i extract variables from jQuery response?

    I have variables that are processed by functions at jQuery level. I get this response on Neoload: {"COMP_CODE":"11","_enableAudit":true,"actionAuditable":true,"branchesCO"...
    manal C.
    manal C.

    manal C.

    Level
    0
    47 / 100
    points
    Fousseyni B.
    Fousseyni B.

    Fousseyni B.

    Level
    2
    1014 / 2000
    points
    Hi Manal, You can check out this following link : http://answers.neotys.com/questions/1113644-json-variable-extractors Best Regards, Fousseyni
  • how can we call a variable declared in a javascript library?

    I have a declared variable at the JavaScript library, i want to replace it in a POST variable. how can I call it and use it in a javaScript action and replace it in a POST...
    manal C.
    manal C.

    manal C.

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

    Nouredine A.

    Level
    4
    5000 / 5000
    points
    Team
    You need to store your JS variable into a NeoLoad variable using the "context.variableManager.setValue method. When you drag and drop a new JS action in your script there's a...
  • how can we define "document.getElementById" in JS library?

    I have a javascript function that contains "document.getElementById", but the problem is that I can't run it at JS library level. when I ran it, I had the following error...
    manal C.
    manal C.

    manal C.

    Level
    0
    47 / 100
    points
    christophe M.
    christophe M.

    christophe M.

    Level
    4
    5000 / 5000
    points
    Team
    As NeoLoad is protocol based vs Browser-based you have no access to the DOM of the page and you cannot access browser objects like document or window. You have to extract...