Adding Playwright Agents: Lessons from the Deep TrenchesI have spent the last few weeks adding AI agents to my Playwright framework. Specifically Playwright's planner, generator, and healer, running locally through Claude Code. The Playwright agents explorMay 11, 2026·11 min read
Testing with Postman: MomentPostman has many built in Javascript libraries. Moment is one of the more useful ones for getting dates such as today's date or tomorrow's. Creating a Date with Moment Moment is another tool build into postman that can be used for your test. This is ...Oct 5, 2022·1 min read
Testing with Postman: Chai AssertionsPostman uses the Chai Assertion Library so familiarize yourself with it. Using Chai Match Assertion You can define a format for your response using Regex and the match assertion. Below is an example of a data format for a mysql date. Date Format pm.t...Sep 28, 2022·1 min read
Testing with Postman: Looping TestIn this blog we use setNextRequest to call to back to the same postman request. This allows us to reuse that request and change different variables for multiple test. Setting Up a Looping Test You can make a request loop back to itself and run again....Sep 21, 2022·2 min read
Testing with Postman: HeadersSometimes the only thing you need to test is a header. This is when a PDF or something else is returned. Below is how you can test a header. Testing for Correct Headers and PDF Responses Below are test you can run on headers. The great thing about th...Sep 14, 2022·1 min read
Testing with Postman: Reusable CodeSince I talked about reusable code in your environmental variable last week lets see how that works this week. Adding Reusable Code to Your Variable //Here we create a function that is then stored in the environmental variable. This is so we can then...Sep 7, 2022·2 min read
Testing with Postman: VariablesSorry it has been a while but I recently moved job and house, so life has been hectic. Next we will discuss variables. There are a lot of different variables you can use like Collection, Environmental, path, and others. The main 2 I use are Environme...Sep 1, 2022·2 min read