Postman or Playwright for API tests?

I get a lot of push from developers to do API testing in Postman. Which usually leads to Newman being used for inclusion in pipeline.

Recently Iā€™ve moved to doing API testing in Playwright as it offers more control and better reporting.

Iā€™d love to hear the communities thoughts on this and which way you and your team have been going? Pros and cons, etc.

Thanks

10 Likes

Can you explain this, maybe there are some things in Postman that you donā€™t know yet? :smiley:

Not gonna lie, Iā€™m a huge Postman fan.

  • Ease of use
  • Low learning curve or people already know it
  • Non-technical people can easily pick up Postman and use it
  • Easy exploratory testing with Postman compared to Playwright.
  • I use Postman if Iā€™m to lazy to open Burp, for some data driven fuzzing.
  • Our Developers also use it

I use this for reporting with Newman: GitHub - DannyDainton/newman-reporter-htmlextra: A HTML reporter for Postman's Command Line Runner, Newman. Includes Non Aggregated Runs broken down by Iterations, Skipped Tests, Console Logs and the handlebars helpers module for better custom templates.

Iā€™m not against Playwright, itā€™s just not as appealing to me compared to Postman.

4 Likes

Thanks for the feedback, itā€™s a big help

2 Likes

I havenā€™t looked at Postman for a while so itā€™s possible this has changed since I did (or maybe itā€™s possible and I just couldnā€™t figure it out), but the lack of ability to store the scripts in a source control system like git was a real dealbreaker for me, along with basically having to use the toolā€™s own IDE.

I havenā€™t used playwright, but I do use Cypress for API testing and really like itā€”especially because I can mix API calls with UI-based actions and assertions to get better coverage of full workflows.

3 Likes

The last company I worked at, we built a lot of API tests in Postman, and then used Newman to run them. In the end, I wouldnā€™t do this again.

Newman and Postman are different enough (as of 6 months ago) that failures and passes will appear differently between the two. Itā€™s not a lot of differences but enough that you might get different passes and failures between the two.

Furthermore, in order to get Postman tests into Newman you have to export 2 files and commit them to code, which means a potential disconnect between creating the endpoints (or updating them), creating tests and then running tests. If I were doing it again, Iā€™d just write the API tests next to the API code and run it all in the same CI.

I havenā€™t tried Playwright for API tests but with code you can use a true Dev Environment and have more control over all that happens. You just wonā€™t get the quick to start interface Postman offers.

2 Likes

Youā€™ve gotta use what you feel comfy with. We can only address our proā€™s & cons and tell about our experience, but you gotta match it onto your project and see what fits best.

Going to defend Postman here abit! :smiley: (Not saying you ā€˜needā€™ to use it)

Thatā€™s only because of not-properly using of SetNextRequest, an example people donā€™t often know is it might be because requests names must be Unique. (Which makes Newman skip some requests sometimes or be stuck in loops. all by all, itā€™s a good find that newman doesnā€™t work like that because it will make you find bugs in your code :slight_smile: ) Iā€™ve experienced this too and found out the hard way that my way of naming requests and coding wasnā€™t optimal :stuck_out_tongue:

This was indeed the issue at the start of Postman but has changed a while ago.

Hereā€™s some guidance: Better Practices for Git Version Control in Postman | Postman Blog

6 Likes

Weā€™re actually including API tests directly in with our code now. So, we are utilizing WireMock and Contract Testing currently to achieve this. Theyā€™ve been really helpful as devs can now own those tests and our QA can focus on more on more Exploratory or Business logic testing. We still do use postman for quick hits and such, but weā€™ve been working to build out our own framework for wiremocking/contracts so we can utilize them in the pipeline without any other needed plugins.

3 Likes

I wonā€™t use Postman to develop API testing. It is a nice tool to test and play with the APIs, but when the collections grow, it is a hell to maintain.
If you want to create an automation to test some REST API, go with pytest + resquests, or Java + RestAssured, etc but start developing.
I donā€™t know about Playwright, sorry.

5 Likes

Iā€™m just about to get my hands dirty.
I was just dumped an early version of an API that will be called by a React application.

I am a newbie at this as have used Postman (bog standard HTTPClient) in the past without pipeline. At the initial stages it really helps to work with the developers to iron out issues found via exploratory testing.

Now, I want it automated and in the pipeline. I have a brief understanding of Newman that will definitely overcome the limitation of running collections in Postman without a paid license.

However, I am thinking Playwright API so that I have a constant (Whatā€™s the word?) tool as will be using Playwright with C# for UI testing.

Keeping an eye on this thread as Iearning. Thank you

I use Postman for all my API Exploratory testing, though that may get moved to Bruno here soon once version 1 is released. Our team does manage a Postman collection that we try and keep up to date and semi organized with updates and new changes happen within our APIs.

For our API automation we use Playwright. We have over 1300 API checks this includes coverage for over 300 endpoints. The devs and testers have high confidence when making large risky changes to API input/output and for a great portion of the logic that we will see the impact in our automation runs.

I :heart: Playwright and would choose the same path again. Iā€™m 13 articles in to sharing about my experience along with a full project of API test examples that Iā€™ve created and share about here - The Definitive Guide to API Test Automation With Playwright: Introduction Iā€™ve got 3 more articles Iā€™m planning to write and am open to covering more if there are additional questions or areas that I havenā€™t covered.

Itā€™s helpful to note I am using Playwright Test / Typescript so I get the Test runner out of the box.

Pros

  • Only 1 test framework to learn for UI/API checks
  • You have the power of any other library at your fingertips using Playwright test or Playwright as a Library
  • Built in test runner has excellent reporting, specifically if you are capturing traces for your test runs, which allows you to view the requests, request headers, response headers, and response body in a similar way Chrome dev tools renders network requests.

Cons:

  • I havenā€™t found a way to send a request without a user-agent
  • I havenā€™t found a way to easily measure http request duration (there are workarounds but nothing built into Playwright request method)
3 Likes

I would start by exploring an API using a tool like postman. But for automation, Iā€™d use a tool like rest assured (java/kotlin) or just+super test (JavaScript/TypeSctipt).

Why? Because code based automation means easier source control and team collaboration, review of PRs etc

I didnā€™t know playwright had dessicated API testing features? I might check that out. I thought it was browser based.

3 Likes

Hey there,

That is a really useful Playwright guide.

I must admit that I defaulted to C# because that is out main programming language. However, a front end is being developed in React means there is a case to use TypeScript to perform the API tests.

Great practices is excellent section. It is not too difficult to write some (bad) automated test, but more effort is required to write good test cases that are easy to read and maintainable.

Iā€™ve been culprit to poor naming practice. I was following the naming practice on a specflow, playwright with c# project, it was so hard to read the test method names in the test explorer in Visual Studio 2022.

After 0.5 day of hacking, Iā€™m turning into a convert. Really love playwright.

Thanks.

Hello,

At Testrig Technologies, as testing professionals, we frequently utilize Playwright for API Testing. Hereā€™s a breakdown of the reasons why?

  1. UI and API Testing: Playwright is versatile, capable of both UI and API testing.

  2. APIRequestContext Class: Playwright employs the APIRequestContext class for API testing, allowing you to send a variety of HTTP(S) requests over the network.

  3. APIRequest Creation: APIRequest instances are created using the APIRequest class provided by Playwright, making it easy to interact with APIs.

1 Like

I also prefer playwright when testing apiā€™s. Your articles are GOLD. I Just bookmarked them and I plan I review them and practice my api testing again with playwright. Thank you for making them.

With the 330 endpoint and 1300 api checks, did you consider layering that BDD layer of Gherkin (in my case Specflow)? Why?

I didnā€™t consider this as I didnā€™t want to add any additional complexity to my tests. I used Playwright Test Runner that is available in Typescript/Javascript. With Describe, test, and test.step descriptions I didnā€™t feel I needed a Gherkin layer.

With the default Playwright Test Runner this is an example of the report Playwright Test Report

2 Likes

Thank you for the demo report. When things are passing, however, itā€™s all nice and dandy, what matters most is when things start failing, how does report look like then and are how fast are you able to reproduce / backtrack to origin of the failure?

Would you be able to add such a case to the demo?

1 Like

OK so hereā€™s my take. Postman in my opinion is not a ā€œfull fledgedā€ automation tool. It is a fantastic tool, however, for quick API testing, setting up test scenarios in collections and doing limited amount of automation. When it comes to source control, updating tests and Newman integration, the process is quite tedious and cumbersome. It sure can work, however you need Postman app to develop tests, you cannot really do it in the code, editing .postman_collection JSON file unless youā€™re a total nerd :nerd_face:

Not to mention the huge debate on Postman forums about security and privacy. Allegedly dozens (hundreds?) of companies around the world are rethinking whether to ditch Postman completely and choose some other tool due to those concerns. Problem is, thereā€™s not decent alternative to Postman, itā€™s like switching from Windows OS, for Christ sake :smiley:

What I missed in most other comments is the fact that automation software should be as close as possible to production code. For example: your backend is in Java and UI is in React? Well, choose one of the two, whichever will be closer to your tests and/or whoā€™s developers will more help in the automation effort. That way you can share snippets of code with developers, or even full features, components or libraries. Unless, of course, youā€™re Google and have a sea of SDETā€™s at your disposal in dedicated teams, doing just automation :smiley:

Another fact to consider is: if youā€™re testing only the APIs, do you absolutely need a framework that is best utilised for UI testing? Perfect example is Cypress. Again, itā€™s a fantastic tool but if you only need it for API tests and UI will never come, it might be too big of an effort for your projectā€™s needs. That is of course just my personal opinion.

I am in a similar situation, I need to choose automation framework as best as I can. We have only APIs, zero UI. Our code is TypeScript/NestJS and devs use Jest for unit tests so naturally, I chose TypeScript with Jest and supertest. I might change my mind in near future, however, depending mostly on clientā€™s needs. For example, I miss some out-of-the-box test runners and reporters like Selenium, Cypress or Playwright have, but Iā€™m not there yet.

What Iā€™m trying to say is (TLDR): choose the right tool for the job, not what you feel most comfortable with. I know itā€™s a tough one but thatā€™s the only proper way.

Last but not least, and forgive me for being blunt, I am a bit taken aback by the title itself - ā€œPostman or Playwright for API testsā€. Itā€™s like giving us the answer together with the questions and thatā€™s certainly not a good QA best practice. Thereā€™s myriad of different tools. Yes, your options might be Postman or Playwright, but thatā€™s a specific use case :slight_smile:

2 Likes

I purposely failed a few tests from a repo I use (branch is here - GitHub - playwrightsolutions/playwright-api-test-demo at bm/failing-on-purpose)

Below is the report so you can see how failures look. I do have traces enabled, so you can see all the network requests headers and responses from the trace, giving critical information when debugging.

Playwright Test Report - Live report with failures, and a flakey test is included (I have retries enabled so you can see each retry on the failure as well).

2 Likes

Thank you very much! I Must say I am VERY impressed with the whole report, including UI, the links, the dataā€¦ close to perfection.

2 Likes