Use and secondary development of xmind2testcase

xmind2testcase installation, simple secondary development and usage instructions: Add xmind file backup Refactor to generate CSV file Preview page data display reconstruction 1. Installation 1.xmind2testcase installation pip install xmind2testcase 2. Start the service Enter the default location: C:\Users\dell\AppData\Roaming\Python\Python38\Scripts, open the cmd command window, execute the command xmind2testcase.exe webtool 5000, enter http://local ip:5000 in the browser […]

vue2+ant-design-vue a-select component secondary packaging (supports single selection/multiple selection to add all selections/pagination (multiple selections across pages)/custom label)

1. Renderings 2. Parameter configuration 1. Code example <t-antd-select v-model=”selectVlaue” :optionSource=”stepList” @change=”selectChange” /> 2. Configuration parameters (Attributes) inherit a-select Attributes Parameter Description Type Default value v-model Bind value boolean / string / number/Array – mode Set ‘multiple”tags’ multi-selection (display all selection ) String – optionSource Drop-down data source Array – width select width (can set […]

Anaconda installation configuration and environment creation

Anaconda is an open source python distribution with a lot of useful toolkits. The following is an introduction to the installation, configuration and environment creation process of Anaconda. Table of Contents 1. Download and install Anaconda 2. Anaconda environment variable configuration 3. Create an environment under Anaconda 1. Download and install Anaconda Download Anaconda on […]

Anaconda download and installation

1. Overview 1) Contains conda: conda is an environment manager whose functions rely on the conda package. This environment manager is similar to pip. 2) Install a large number of tool packages: Anaconda will automatically install a basic python, and the version of python is related to the version of Anaconda. A large number of […]

Secondary packaging of axios

Structural description We usually create a request.js file like this for secondary encapsulation of axios The most basic demonstration Here is a simple demonstration //Introduce files import axios from “axios” //Global configuration const request=axios.create({<!– –> baseURL:”http://localhost:3000″, //Root path timeout:8000 //Request timeout time }) export default request <template> <div> <button @click=”emitget”>Send get request</button> </div> </template> <script> […]

Solved in one article, anaconda creates a virtual environment, Python model is packaged, the C++ program calls the py file, and the entire program writing process is called.

Foreword Python is a language more suitable for data analysis and calculation. In terms of software development, especially interface development, it may be slightly lacking. QT is a cross-platform C++ graphical user interface program development framework, developed in VS QT can be integrated into the tool, and interface development and program writing can be performed […]

Jmeter stress testing practice: Jmeter secondary development of custom functions

?1 Preface Jmeter is a stress testing tool under the Apache Foundation with a wide range of application scenarios. It has the characteristics of lightweight, high scalability, and distribution. Jmeter already supports a variety of functions such as random numbers, counters, timestamps, case conversion, attribute verification, etc., making it convenient for users to use. If […]

Secondary encapsulation of element-plus form

Personal profile The blogger wrote about the encapsulation of element-plus tables and forms. Please support me. [Table]https://gitee.com/childe-jia/table-vue3 [Form] https://gitee.com/childe-jia/form-render Remaining issues: to be resolved When select is multiple, an empty array must be initialized (when elementplus v-model initializes updateValue, an empty array will trigger verification) Introduction WHAT form-renderer is based on element-plus, but is not […]

Secondary encapsulation of element-plus table

Personal profile The blogger wrote about the encapsulation of element-plus tables and forms. Please support me. [Table]https://gitee.com/childe-jia/table-vue3 [Form] https://gitee.com/childe-jia/form-render Introduction WHAT i-table is based on element-plus, but is not limited to element-plus components. Based on the complete inheritance of the table attribute of the element-plus element, it has been extended. Some non-table components or custom […]

MySQL5: MySQL data storage file; the index and data in MylSAM are two independent files. How does it find the data through the index? Clustered index/clustered index, why does the secondary index in InnoDB not store addresses but key values? How to understand row ID?

MySQL5: MySQL data storage file; the index and data in MylSAM are two independent files. How does it find the data through the index? Clustered index/clustered index, why does the secondary index in InnoDB not store addresses but key values? How to understand row ID? MySQL data storage file How to implement different storage engine […]