How to use global variable defined in pre-request script in tests script in postman?











up vote
0
down vote

favorite












enter image description here



I have defined one global variable workkard_number in pre-request script. I want to compare this global variable with workkard_number present in response.










share|improve this question




























    up vote
    0
    down vote

    favorite












    enter image description here



    I have defined one global variable workkard_number in pre-request script. I want to compare this global variable with workkard_number present in response.










    share|improve this question


























      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      enter image description here



      I have defined one global variable workkard_number in pre-request script. I want to compare this global variable with workkard_number present in response.










      share|improve this question















      enter image description here



      I have defined one global variable workkard_number in pre-request script. I want to compare this global variable with workkard_number present in response.







      api postman






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 17 at 16:52









      Danny Dainton

      3,3962619




      3,3962619










      asked Nov 17 at 15:06









      nikhil bisht

      112




      112
























          2 Answers
          2






          active

          oldest

          votes

















          up vote
          0
          down vote













          As the warning message says, you're running a very old version of Postman and it's probably the chrome extension.



          This is now several major versions behind and the pm.* functionality is not included in that old version of the chrome extension.



          Download the native application and start using the newest version of Postman. By not doing this, you're missing out on so many new features.






          share|improve this answer




























            up vote
            0
            down vote













            As @Danny mentioned, it is recommended to update to the latest version.



            Now to your question, if you want to compare the global variable with workkard_number present in response, you need to first parse the response and get the workkard_number in it, which you can then compare with your global variable. You could try something like this in your test script:



            var jsonData = JSON.parse(responseBody);
            var responseWorkkardNumber = jsonData.wokkard_number;


            You can retreive the workkard_number in the response like this(assuming that your response is a json with "workkard_number" as a key in it. Then you can compare it as follows:



            tests["workkard_numbers are equal"] = responseWorkkardNumber === globals.workkard_number;


            or



            tests["workkard_numbers are equal"] = responseWorkkardNumber === pm.globals.get("workkard_number");


            Also note - "Warning - Environment and global variables will always be stored as strings. If you're storing objects/arrays, be sure to JSON.stringify() them before storing, and JSON.parse() them while retrieving." - https://www.getpostman.com/docs/v6/postman/environments_and_globals/manage_environments






            share|improve this answer





















              Your Answer






              StackExchange.ifUsing("editor", function () {
              StackExchange.using("externalEditor", function () {
              StackExchange.using("snippets", function () {
              StackExchange.snippets.init();
              });
              });
              }, "code-snippets");

              StackExchange.ready(function() {
              var channelOptions = {
              tags: "".split(" "),
              id: "1"
              };
              initTagRenderer("".split(" "), "".split(" "), channelOptions);

              StackExchange.using("externalEditor", function() {
              // Have to fire editor after snippets, if snippets enabled
              if (StackExchange.settings.snippets.snippetsEnabled) {
              StackExchange.using("snippets", function() {
              createEditor();
              });
              }
              else {
              createEditor();
              }
              });

              function createEditor() {
              StackExchange.prepareEditor({
              heartbeatType: 'answer',
              convertImagesToLinks: true,
              noModals: true,
              showLowRepImageUploadWarning: true,
              reputationToPostImages: 10,
              bindNavPrevention: true,
              postfix: "",
              imageUploader: {
              brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
              contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
              allowUrls: true
              },
              onDemand: true,
              discardSelector: ".discard-answer"
              ,immediatelyShowMarkdownHelp:true
              });


              }
              });














               

              draft saved


              draft discarded


















              StackExchange.ready(
              function () {
              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53352464%2fhow-to-use-global-variable-defined-in-pre-request-script-in-tests-script-in-post%23new-answer', 'question_page');
              }
              );

              Post as a guest















              Required, but never shown

























              2 Answers
              2






              active

              oldest

              votes








              2 Answers
              2






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes








              up vote
              0
              down vote













              As the warning message says, you're running a very old version of Postman and it's probably the chrome extension.



              This is now several major versions behind and the pm.* functionality is not included in that old version of the chrome extension.



              Download the native application and start using the newest version of Postman. By not doing this, you're missing out on so many new features.






              share|improve this answer

























                up vote
                0
                down vote













                As the warning message says, you're running a very old version of Postman and it's probably the chrome extension.



                This is now several major versions behind and the pm.* functionality is not included in that old version of the chrome extension.



                Download the native application and start using the newest version of Postman. By not doing this, you're missing out on so many new features.






                share|improve this answer























                  up vote
                  0
                  down vote










                  up vote
                  0
                  down vote









                  As the warning message says, you're running a very old version of Postman and it's probably the chrome extension.



                  This is now several major versions behind and the pm.* functionality is not included in that old version of the chrome extension.



                  Download the native application and start using the newest version of Postman. By not doing this, you're missing out on so many new features.






                  share|improve this answer












                  As the warning message says, you're running a very old version of Postman and it's probably the chrome extension.



                  This is now several major versions behind and the pm.* functionality is not included in that old version of the chrome extension.



                  Download the native application and start using the newest version of Postman. By not doing this, you're missing out on so many new features.







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Nov 17 at 16:51









                  Danny Dainton

                  3,3962619




                  3,3962619
























                      up vote
                      0
                      down vote













                      As @Danny mentioned, it is recommended to update to the latest version.



                      Now to your question, if you want to compare the global variable with workkard_number present in response, you need to first parse the response and get the workkard_number in it, which you can then compare with your global variable. You could try something like this in your test script:



                      var jsonData = JSON.parse(responseBody);
                      var responseWorkkardNumber = jsonData.wokkard_number;


                      You can retreive the workkard_number in the response like this(assuming that your response is a json with "workkard_number" as a key in it. Then you can compare it as follows:



                      tests["workkard_numbers are equal"] = responseWorkkardNumber === globals.workkard_number;


                      or



                      tests["workkard_numbers are equal"] = responseWorkkardNumber === pm.globals.get("workkard_number");


                      Also note - "Warning - Environment and global variables will always be stored as strings. If you're storing objects/arrays, be sure to JSON.stringify() them before storing, and JSON.parse() them while retrieving." - https://www.getpostman.com/docs/v6/postman/environments_and_globals/manage_environments






                      share|improve this answer

























                        up vote
                        0
                        down vote













                        As @Danny mentioned, it is recommended to update to the latest version.



                        Now to your question, if you want to compare the global variable with workkard_number present in response, you need to first parse the response and get the workkard_number in it, which you can then compare with your global variable. You could try something like this in your test script:



                        var jsonData = JSON.parse(responseBody);
                        var responseWorkkardNumber = jsonData.wokkard_number;


                        You can retreive the workkard_number in the response like this(assuming that your response is a json with "workkard_number" as a key in it. Then you can compare it as follows:



                        tests["workkard_numbers are equal"] = responseWorkkardNumber === globals.workkard_number;


                        or



                        tests["workkard_numbers are equal"] = responseWorkkardNumber === pm.globals.get("workkard_number");


                        Also note - "Warning - Environment and global variables will always be stored as strings. If you're storing objects/arrays, be sure to JSON.stringify() them before storing, and JSON.parse() them while retrieving." - https://www.getpostman.com/docs/v6/postman/environments_and_globals/manage_environments






                        share|improve this answer























                          up vote
                          0
                          down vote










                          up vote
                          0
                          down vote









                          As @Danny mentioned, it is recommended to update to the latest version.



                          Now to your question, if you want to compare the global variable with workkard_number present in response, you need to first parse the response and get the workkard_number in it, which you can then compare with your global variable. You could try something like this in your test script:



                          var jsonData = JSON.parse(responseBody);
                          var responseWorkkardNumber = jsonData.wokkard_number;


                          You can retreive the workkard_number in the response like this(assuming that your response is a json with "workkard_number" as a key in it. Then you can compare it as follows:



                          tests["workkard_numbers are equal"] = responseWorkkardNumber === globals.workkard_number;


                          or



                          tests["workkard_numbers are equal"] = responseWorkkardNumber === pm.globals.get("workkard_number");


                          Also note - "Warning - Environment and global variables will always be stored as strings. If you're storing objects/arrays, be sure to JSON.stringify() them before storing, and JSON.parse() them while retrieving." - https://www.getpostman.com/docs/v6/postman/environments_and_globals/manage_environments






                          share|improve this answer












                          As @Danny mentioned, it is recommended to update to the latest version.



                          Now to your question, if you want to compare the global variable with workkard_number present in response, you need to first parse the response and get the workkard_number in it, which you can then compare with your global variable. You could try something like this in your test script:



                          var jsonData = JSON.parse(responseBody);
                          var responseWorkkardNumber = jsonData.wokkard_number;


                          You can retreive the workkard_number in the response like this(assuming that your response is a json with "workkard_number" as a key in it. Then you can compare it as follows:



                          tests["workkard_numbers are equal"] = responseWorkkardNumber === globals.workkard_number;


                          or



                          tests["workkard_numbers are equal"] = responseWorkkardNumber === pm.globals.get("workkard_number");


                          Also note - "Warning - Environment and global variables will always be stored as strings. If you're storing objects/arrays, be sure to JSON.stringify() them before storing, and JSON.parse() them while retrieving." - https://www.getpostman.com/docs/v6/postman/environments_and_globals/manage_environments







                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered Nov 19 at 6:14









                          Derryl Thomas

                          312




                          312






























                               

                              draft saved


                              draft discarded



















































                               


                              draft saved


                              draft discarded














                              StackExchange.ready(
                              function () {
                              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53352464%2fhow-to-use-global-variable-defined-in-pre-request-script-in-tests-script-in-post%23new-answer', 'question_page');
                              }
                              );

                              Post as a guest















                              Required, but never shown





















































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown

































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown







                              Popular posts from this blog

                              If I really need a card on my start hand, how many mulligans make sense? [duplicate]

                              Alcedinidae

                              Can an atomic nucleus contain both particles and antiparticles? [duplicate]