Efficient API testing involves flexibility, reusability, and the ability to test different configurations seamlessly. Postman, a versatile API testing tool, offers a feature called “Environments” that allows you to manage variables and configurations for your API tests. In this guide, we’ll explore how to use Postman Environments effectively for more efficient API testing, complete with extended code examples.
Continue reading “How to Use Postman Environments for Efficient API Testing”Category: Tutorials
Testing OAuth 2.0 APIs with Postman: A Step-by-Step Tutorial
OAuth 2.0 is a widely used authentication and authorization protocol for securing APIs. Testing OAuth 2.0-protected APIs is essential to ensure secure access and data protection. In this step-by-step tutorial, we’ll explore how to test OAuth 2.0 APIs using Postman, with code examples and best practices.
Continue reading “Testing OAuth 2.0 APIs with Postman: A Step-by-Step Tutorial”Automating API Testing with Postman Collections and Newman
API testing is a critical part of the software development process, ensuring that your APIs work as expected. While manually testing APIs is valuable, automation can significantly improve efficiency and reliability. In this guide, we’ll explore how to automate API testing using Postman Collections and Newman, a command-line companion tool. We’ll provide code examples to help you get started.
Continue reading “Automating API Testing with Postman Collections and Newman”Mastering API Testing with Postman: Code Examples, Tips, and Best Practices
APIs (Application Programming Interfaces) are the backbone of modern software development. They allow different applications to communicate and share data. Effective testing of APIs is crucial to ensure the reliability and functionality of your applications. Postman, a versatile API testing tool, empowers you to master API testing with ease. In this guide, we’ll explore code examples, tips, and best practices to elevate your API testing skills using Postman.
Continue reading “Mastering API Testing with Postman: Code Examples, Tips, and Best Practices”Getting Started with Postman: A Comprehensive Guide for Beginners
In the world of software development and API (Application Programming Interface) testing, efficiency and effectiveness are paramount. Postman, a powerful and user-friendly tool, is here to make API testing and development a breeze. Whether you’re a developer, tester, or someone looking to explore the world of APIs, this comprehensive guide will walk you through the fundamentals of Postman.
Continue reading “Getting Started with Postman: A Comprehensive Guide for Beginners”AJAX POST request: Invalid request (Malformed HTTP request) on console and net::ERR_EMPTY_RESPONSE on chrome dev tools
When you encounter the error “Invalid request (Malformed HTTP request)” in the console and “net::ERR_EMPTY_RESPONSE” in Chrome Dev Tools while making an AJAX POST request, it usually indicates an issue with the request itself or the server’s response. Here are some common reasons and troubleshooting steps to help you resolve the problem:
Continue reading “AJAX POST request: Invalid request (Malformed HTTP request) on console and net::ERR_EMPTY_RESPONSE on chrome dev tools”URL vs. URI vs. URN, What’s the difference / examples
What is URI
A URI identifies a resource either by location, or a name, or both. More often than not, most of us use URIs that defines a location to a resource. The fact that a URI can identify a resources by both name and location has lead to a lot of the confusion in my opinion. A URI has two specializations known as URL and URN. Continue reading “URL vs. URI vs. URN, What’s the difference / examples”
Build your own WordPress Twenty Sixteen Child Theme
Child themes are very popular these days. We will create a simple child theme for the Twenty Sixteen, one of the main standard WordPress themes.
To get started we will create a folder and we will name it twentysixteen-child . Then we will create a style.css inside this folder. Continue reading “Build your own WordPress Twenty Sixteen Child Theme”
How to embed video into a website – Ultimate tutorial
Embedding a video into HTML website seems an easy task, but there really are lots of aspects to take into consideration when you insert a video:
- File size and format (extensions and codecs)
- Browser and platform compatibility
- User internet connection (mobile vs desktop devices)
- Server resources (bandwidth, CPU, RAM)
- Privacy and data owning
- Content visibility and engagement
Therefore, depending on where you will insert the video and the application you use, you will be affected by some of the above or not. So let’s get our hands on it and do a step by step research about what is the simplest way to embed a video. Continue reading “How to embed video into a website – Ultimate tutorial”
Create a modal window using pure HTML5 and CSS3
In this tutorial we will create a modal window using only HTML5 and CSS3 properties. The techniques used to create a functional modal box are CSS3’s transition, opacity, pointer-event, and background gradient properties.
Continue reading “Create a modal window using pure HTML5 and CSS3”