Tag:Use case
-
Dry goods | record your first web automation test case
Acceptance testing of web applications often involves some manual tasks, such as opening a browser and performing the operations described in a test case. However, manual tasks are prone to human errors by operators, and the time cost is also relatively high. Therefore, automating these tasks can eliminate human factors. Selenium can help us complete […]
-
Technology sharing | appium use case recording
Download and install Download address: https://github.com/appium/appium-desktop/releases Download the appium version of the corresponding system. After installation, click “start server” to start the appium server. On the startup success page, click the magnifying glass in the upper right corner to enter the create session page. After configuring the desirecapability information, click “start session” to start the […]
-
Dry goods | first glimpse of pytest testing framework, can easily hold it even if the foundation is weak
Pytest is a mature full-featured Python testing tool that can help you write better programs. It is similar to Python’s own unittest testing framework, but pytest is simpler and more efficient to use, and is compatible with the unittest framework. Pytest can support simple unit testing and complex function testing. Pytest itself supports unit testing. […]
-
Dry goods | get the pytest automated testing framework (II)
In the last article, I shared the basic usage of pytest. This article further introduces other practical features and advanced techniques of pytest.pytest fixturesPytest can be [email protected] Fixture decorator is used to decorate a method. The method name of the decorated method can be passed into the test method as a parameter. You can use […]
-
In the middle of the year, I have prepared a small number of automated interview questions. Welcome to the self-test
Programming grammar questions: What data types does Python have How to merge two dictionaries How does Python write JSON to a file? Will the code in finally be executed after return in the except statement? What are variable and immutable types? Is the parameter passed by value or reference during Python function call? Differences between […]
-
Tarsbenchmark | service performance pressure tester
By Eaton Introduction |Before the service is officially launched, we need to ensure the availability and stability of the service after it is launched, so it is very necessary to comprehensively test the processing capacity and stability of the system. Stress testing is an important part of it. This article will introduce how to use […]
-
EDAs 3.0 microservice testing best practices
This article is based on the microservice practice of Alibaba cloud’s commercial product EDAs 3.0. If your team has strong microservice testing ability, we hope that our practice and thinking behind microservice testing can provide you with some reference. preface With the arrival of the cloud native era, more and more applications are born and […]
-
An API management artifact pushed by Alibaba and Tencent!
As a software development practitioner, API debugging is an essential skill, and postman has done very well in this regard. However, API debugging is only a part of the whole software development process, and there are still many things that postman cannot complete, orUnable to complete efficientlyFor example, API document definitions, API mock, API […]
-
Reshaping the dataframe with pandas melt()
Reshaping dataframe is an important and indispensable skill in data science. In this article, we will explore pandas melt() and how to use it for data processing. The simplest melt The simplest melt () does not require any parameters. It turns all columns into rows (displayed as column variables) and lists all associated values in […]
-
Test (love test) open source interface test, agile test management platform 10.2.7 release
I:Introduction to ITEMWork ITest work open source agile test management, including minimalist task management, test management, defect management, test environment management, interface testing, interface mock, and pressure testing, as well as rich statistical analysis,8-in-1 workstation。 You can assign test cases to execute according to test packages, or create test iterations (including tasks, test packages, bugs, […]
-
Python testing framework: pytest and unittest comparison
Both pytest and unittest can be written automatically. Unittest is relatively basic and convenient for secondary development and integration platform. Compared with unittest, pytest has simpler code and can use more plug-ins. Pytest can be compatible with unittest cases, but unittest cannot be compatible with pytest cases. What is the difference between them in use? […]