Postman Tutorial #23 - Automating First API Test with Postman

Поделиться
HTML-код
  • Опубликовано: 4 фев 2025

Комментарии • 9

  • @dhanushm3690
    @dhanushm3690 Год назад +1

    The way of teaching is really awesome :).
    Loved watching playlist.

  • @karrezza
    @karrezza 29 дней назад

    I don't see these two Pre-req and test tabs.

  • @nitinkrishna4811
    @nitinkrishna4811 Год назад

    hello, is there any tutorial link to verify the data between postman api respose and salesforce data after sync

  • @NavneetMishra-q3k
    @NavneetMishra-q3k Год назад

    If I have two different collections and two different environments, I want to connect the 1st collection with the 1st environment and the 2nd collection with the 2nd environment for all time. Is this possible?

  • @vallikavi86
    @vallikavi86 Год назад

    Hi, I wanted to verify the elements displayed in a widget ( salesforce UI). How to search the widget elements only in Robot Framework ? Thanks in advance

  • @RJ-zd5ep
    @RJ-zd5ep 10 месяцев назад

    Hi Sir ,There are 89 videos of api testing on the channel I just want to know if there are any other videos are there or not

  • @SaurabhSingh-oc9le
    @SaurabhSingh-oc9le Год назад

    Hi Sir ,
    Thanks for creating this amazing course.
    This course is improving my knowledge and helping me very much.
    I have two questions sir-
    1. console.clear(); is not reflecting in my postman so what can I will do instead of this.
    2. Without using- console.log(pm.globals.get("MSTestURL")); in pre-requisite in that case also postman giving the inputs of URL in console so could you please brief me about the advantage of using this pre-requisite in our test script.
    Thanks in advance!

    • @sowjanyakake5720
      @sowjanyakake5720 Год назад

      1. Click on Console window
      you can see 'clear' button in gray color on the top-right side.
      Click on that clear button, it will perform same function.
      2. whatever script which you provide in pre-request, it will be executed before that request does the API call.
      So, usually setting a variable in pre-request script and that variable cn be used in the API call's paramater/query parameters.