ConfigParser module of python - configure parser

brief introduction The configparser module is modified as configparser in Python 3 This module defines a configparser class. The function of this class is to use the configuration file to take effect. The format of the configuration file is the same as that of the INI file of windows The function of this module is to create an object by using ...

Added by Moocat on Sun, 06 Feb 2022 23:01:31 +0200

Interface automatic test, one key quick verification of all fields of interface return value

Hello, I'm erhei A set of software testing related resources is presented here: Software testing related toolsSoftware testing practice setIn depth automated testingLearning Python Python coding specificationLarge factory interview questions and resume template Pay attention to my official account: two free programmers can receive them. Comm ...

Added by runnee on Sat, 29 Jan 2022 14:24:28 +0200

Excelbdd Java open source component released!

The PowerShell component of ExcelBDD was released on June 12. See< ExcelBDD is open source! And PowerShell ExcelBDD release>, On 14 June, as described above ExcelBDD open source agile project launched! And introduce Microsoft Agile+DevOps free platform - dev.azure com. The first version of excelbdd Java open source component has been ...

Added by AwptiK on Fri, 28 Jan 2022 06:36:01 +0200

How to play with automated testing framework? Who is your only one?

catalogue Preliminary study on Framework Python Robot Framework Demo Unittest Demo Nose2 Demo Pytest Demo1 Demo2 Frame selection Python Robot Framework Unittest Nose2 Pytest summary Python​ Python's unique advantages have created a series of test frameworks. In front of these test frameworks, which is better or ...

Added by marginalboy on Mon, 17 Jan 2022 21:48:35 +0200

[Python automated test 10] file basic operation

1, Foreword    this article mainly explains the basic operation of files in Python. It is the basic explanation of file operation. It will be used in subsequent automation tests. Below is the portal of a series of articles. Interested partners can also go to check it. Let's have a look at it together~ Series of articles: ...

Added by shinichi_nguyen on Mon, 17 Jan 2022 12:44:14 +0200

App automated test tool Uiautomator2

python UIAutomator2 is a library that can use Python to automate the UI operation of Android devices. The bottom layer is based on Google UiAutomator (Java library). The principle of python UIAutomator2 is to use http rpc service on mobile phones to open the functions in UiAutomator, and then encapsulate these http interfaces into Python librar ...

Added by ansarka on Mon, 17 Jan 2022 08:48:27 +0200

Python basic data type

When understanding basic data types, we need to know what basic data types are? Number int, Boolean bool, string str, list, tuple, dictionary dict, etc., including their basic usage and common methods, which will be listed here for reference. Then we need to know some operators, because these basic data types are often used for some operations ...

Added by rpieszak on Mon, 17 Jan 2022 04:50:45 +0200

How to integrate selenium crawling web pages in scratch

1. Background We usually use three crawler libraries when crawling web pages: requests, scratch and selenium. Requests are generally used for small crawlers, while scratch is used to build large crawler projects, while selenium is mainly used to deal with responsible pages (complex js rendered pages, requests are very difficult to construct, o ...

Added by Pi_Mastuh on Sun, 16 Jan 2022 06:16:34 +0200

How to build an interface automation test framework?

Previous articles Overview and process sorting of interface automation test In, we introduce the process of interface automation test. In our work, when a project determines to conduct interface automation test, we generally face two situations: 1. The company has been doing automated testing and has become one of them In this case, what we ...

Added by Hepp on Sun, 16 Jan 2022 02:00:14 +0200

Junit's two common test methods -- Basic test and parametric test

If you don't know how idea creates Junit5 test project, you can see it This blog Test process Basic test Annotate the Test method @ Test shortcoming Each method can only be tested. To test multiple use cases in a use case, many methods need to be added, resulting in very bloated code, which is not recommended package com.xjtu; import o ...

Added by mikejs on Sat, 15 Jan 2022 23:57:27 +0200