Postman Tests

Let’s continue our acquaintance with Postman. In the previous article, we considered the main features and only a little bit the testing of requests.

RegExp: The Basics

Today we’ll talk about regular expressions. What is a regular expression? Regular expressions are patterns used to match sequences of characters in strings.

Syntax for creating a regular expression:

var regexp = /template/; // without flags

Testing with Postman

Postman it is an HTTP client for storing and testing server API.

First, it is sending requests. Let’s say you have a Rest endpoint without authentication and want to test it. Choose the method, enter the URL, edit params or body of request and send it.