#7 Exploring application under test (restful booker) using http client before automating it

Поділитися
Вставка
  • Опубліковано 6 лют 2025
  • GitHub: github.com/Pra...
    Goal:
    Exploring application under test (restful booker) using http client before automating it
    Objective:
    Use HTTP Client from AQUA to explore application under test (restful booker) before automating it.
    Next steps:
    Refactor HTTP requests to make them more useful.

КОМЕНТАРІ • 3

  • @avishekbehera
    @avishekbehera Рік тому +1

    Amazing video. New things for me.
    1- NIce use of Health check, makes good sense, having health check endpoint is easy , if not available we can demand for it
    2- AQUA's powerful and beautiful HTTP capabilities, that can reside within codebase, so absolutely no need of any external documentation like swagger or postman.
    Thanks Pramod, good going. Lets proceed to next :)

    • @powertester5596
      @powertester5596  Рік тому +1

      Glad that you like it buddy :-).
      I am also going to make all our tests scope/role aware and our APIs as scope agnostic.
      If you recall all our APIs are currently tightly coupled to one role “say admin”.
      I will make all APIs as scope agnostic and then you can test same APIs based on different roles and thus different expected response codes per role (say 200 for admin and 403 for a guest user :-) )

    • @avishekbehera
      @avishekbehera Рік тому

      @@powertester5596 Good one, as developers too use generic error templates based on roles , so it would be easier and cleaner to have scope-agnostic implementation.