#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.
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 :)
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 :-) )
@@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.