Systems | Development | Analytics | API | Testing

%term

How to Do Effective Test Planning (Using Mind Maps) | Kiruthika Ganesan | #testplan #mindmaps

In this enlightening video, Kiruthika Ganesan introduces a powerful tool for agile and effective test planning - mind maps. Kiruthika shares her insights and expertise on harnessing the potential of mind maps to streamline the test planning process. With clear explanations and practical examples, viewers will discover how to create structured and agile test plans that enhance coverage and efficiency. Whether you're a tester, QA professional, or project manager, this video equips you with the knowledge to optimize your test planning process using mind maps.

Browser Automation Debug with Playwright Trace Viewer

Playwright Trace Viewer is a powerful tool that allows developers and testers to gain deeper insights into the execution of browser automation scripts created with Playwright. It provides a visual representation of script execution, enabling users to diagnose issues, optimize performance, and understand the flow of actions within their automation scripts. In this blog post, we’ll explore how to use Playwright Trace Viewer effectively to enhance your browser automation projects.

The Global Deployment Engine: How We Deploy Across Continents

We previously explored how we built our own Serverless Engine and a multi-region networking layer based on Nomad, Firecracker, and Kuma. But what about the architecture of the engine that orchestrates these components across the world? This is an interesting topic to work on and we thought it could be useful to share some internals out there. Put on your scuba equipment, this is a deep dive into our architecture and the story of how we built our own global deployment engine.

How to Optimize Your SFTP Data Integration Process

In today's data-driven world, the seamless exchange of information is the lifeblood of modern enterprises. Whether you're a small startup or a global corporation, the ability to securely and efficiently transfer data between systems and partners is essential for success. This is where Secure File Transfer Protocol (SFTP) emerges as a crucial player, providing a robust framework for data integration that safeguards sensitive information while ensuring its swift and reliable passage from point A to point B.

Medical Device Cybersecurity Trends From Our New Report

As medical technology becomes more connected, ensuring the security of medical devices is vital. Technology advances, bringing new opportunities for innovation and to improve the lives of patients — but emerging technology also presents opportunities for malicious actors.

Postman Tutorial: A Guide for Complete Beginners

Postman is one of the most sought-after tools when it comes to API testing. Whether you’re new or experienced, this tutorial simplifies API testing using Postman. We’ll cover the basics, explore testing techniques, and showcase implementable skills in this blog. This blog is derived from Pricilla Bilavendran’s workshop on Postman with The Test Tribe.

Oracle API Manager vs. IBM API Management: Which is Right For You?

Any organization that uses diverse applications and web services need a comprehensive way to manage its application programming interfaces (APIs). As two of the biggest names in technology, Oracle’s and IBM’s tools tend to stand out to people reviewing their options. Can Oracle API Manager or IBM API Management meet your needs while staying within your budget? The following review compares and contrasts the API solutions to help you make an informed decision.

SmartBear: A Visionary in the 2023 Gartner Magic Quadrant

We are excited to announce SmartBear has been named a Visionary in the 2023 Magic Quadrant by Gartner for API Management. A Magic Quadrant is a tool that provides a graphical competitive positioning of technology providers to help you make smart investment decisions. The evaluation was based on specific criteria that analyzed the company’s overall completeness of vision and ability to execute.

How to Fix java.io.IOException

The java.io.IOException is a checked exception in Java that indicates a problem while performing Input/Output (I/O) operations. This usually happens when a failure occurs while performing read, write or search operations in files or directories. Since IOException is a checked exception, it must be explicitly handled in methods that can throw this exception - either by using a try-catch block or by throwing it using the throws clause.