How to Determine the Quality of JTAG in FPGA Design?

How to Determine the Quality of JTAG in FPGA Design?

FPGA (Field Programmable Gate Array) as a programmable logic device has been widely used in various digital system designs, and the JTAG interface is one of the most commonly used debugging/programming interfaces. Its quality directly affects the performance and reliability of the FPGA. Therefore, it is essential to diagnose and test the JTAG to prevent … Read more

Master Embedded Systems and Core Concepts of Testing

Master Embedded Systems and Core Concepts of Testing

Every hardware engineer learning embedded systems should have DIYed an oscilloscope at least once, not only because this process allows you to truly touch the soul of embedded systems, but also to deeply understand the core concepts of testing and measurement – after all, when you personally collect waveforms, display them, and measure parameters, the … Read more

Digital Twin Technology for Autonomous Systems Testing

Digital Twin Technology for Autonomous Systems Testing

Dedicated to the research and development of digital twin technology Benefiting humanity through solutions and engineering applications Source: United Reference Abstract The application of digital twin technology in the development and testing of systems and their subsystems has become quite mature. However, its application in the development and testing of autonomous systems is an emerging … Read more

Python Requests API Automation Testing Framework Tutorial

Python Requests API Automation Testing Framework Tutorial

Recommended: A Discussion on Visual Perception Testing in UI Automation This article is edited from the oschina blog by author Nan Mu Dong Er. If it helps you, feel free to share it with your friends! Recently, due to the company’s shift in testing focus from web page functional testing to API testing, most of … Read more

A Comprehensive Framework for Multi-Platform Testing

A Comprehensive Framework for Multi-Platform Testing

Background As we all know, there are many automation testing tools available in the market. For web automation, we have Selenium, Robot Framework, Playwright, etc. For API automation testing, tools like HttpRunner, Postman, and JMeter are popular. Performance testing can be done using JMeter, LoadRunner, Locust, nGrinder, etc., while mobile testing can be handled by … Read more

Quick Start Guide to Kiwi iOS Automation Testing Framework

testkuaibao|Software Testing Self-Learning WeChat Public Account 1, 2, 4 Every Day at 9:00, Don’t Miss It Introduction   Kiwi is a behavior-driven testing framework suitable for iOS development, designed to provide a simple and easy-to-use BDD (Behavior Driven Development) library. Installation   Install using Cocoapods, add the following configuration in the test Target: pod 'Kiwi', '3.0.0' Basic … Read more

Comparison of Pytest and Unittest Frameworks

Comparison of Pytest and Unittest Frameworks

When learning automation, some students may struggle with whether to learn the Pytest or Unittest framework. Of course, some people learn both, but sometimes they don’t master either and only know how to use them without understanding the differences between the two frameworks. In short, to perform automated testing effectively, it is necessary to understand … Read more

Comparison of Three Common Automation Frameworks

Comparison of Three Common Automation Frameworks

After previously publishing a comparison of performance testing tools, some friends left messages wanting to understand the comparison of automation testing frameworks, especially the pros and cons between RobotFramework, pytest, and unittest. Today, we will analyze the differences between them and their respective advantages and disadvantages. 1 RobotFramework Advantages: (1) By using the keyword-driven testing … Read more

Getting Started with PyTest: A Powerful Testing Framework

PyTest: The Best Partner for Writing Test Cases When it comes to code testing frameworks, PyTest is definitely a dark horse in the Python world. It not only solves the verbosity problem of unittest but also comes with a bunch of super useful features. Let’s take a look at this powerhouse in the testing field! … Read more

Ultimate Guide to the Pytest Testing Framework

Ultimate Guide to the Pytest Testing Framework

Pytest is the built-in automation testing framework for Python 2 , while for Python 3 the pytest framework is independent and needs to be installed via pip installation 1. Installing and Setting Up Pytest 1. Use pip install -U pytest to install for Python 3 2. Check pytest version information: pytest –version 3. Execution rules … Read more