Tag:test
-
[software testing] concept
Article catalogue What is software testing The difference between software testing and software development Skill requirements and professionalism The difference between software testing and debugging Software testing post Positioning of software testing in different companies The quality of an excellent software tester What is demand Source of demand realization Demand classification Requirements from the perspective […]
-
Python monitors the performance query of Yunnan University for Nationalities and pushes it (deployed to the pagoda)
Prospect: YQ last semester’s exam was delayed, which led to this semester’s exam. Now the score can’t be found, and it’s troublesome to pay attention all day. Therefore, a script detected on the server is deployed, and the score is pushed to wechat email import requests import time def ceshi(): cookies = { #Fill in […]
-
[testing] Nanny Robot framework tutorial, learn to do automated testing easily
Article catalogue preface Environment construction Download and install Python 3 x Install the robot Framework Library Install requests Library Install selenium 2library Library Keyword parameters System keyword Custom keywords Build test framework Creating Test Cases Execute test cases Generate test report complimentary close preface Hello, I’m Yoko. Today I’d like to share with you a […]
-
JMeter test simple test interface
JMeter download address:Apache JMeter – Apache JMeter™ Chinese JMeter Unzip the compressed package, bin directory – > file JMeter properties Search #language = en # add a line language = zh below_ CN After saving, double-click JMeter Bat is OK Download the picture on Baidu and save it locally Add thread group You can fill […]
-
Introduction to automatic generation of use cases
Background: When an interface is modified or added, we need to carry out smoke verification quickly. In addition to the use cases provided by testers, we can automatically solve the problem of use case generation through algorithms. Most complete algorithm: Algorithm prototype: Cartesian product algorithmAlgorithm Introduction: the product of the number of each parameterCode design:Product […]
-
Method of making process run in background in Linux
Author: ningoo | [reprint shall indicate the original source and author information of the article in the form of hyperlink] In Linux, if you want the process to run in the background, generally, we can add & after the command. In fact, this puts the command into a job queue: $ ./test.sh & [1] 17208 […]
-
Linux building dynamic web server installation
Basic configurationInstall web server: httpd-2 X.XLet’s optimize it firstSet variables according to CPU#export CFLAGS=”-O2 -march=pentium4 -pipe” && CXXFLAGS=$CFLAGS The “- March” option means that binary code is compiled for a specific CPU type (it cannot run on a lower level CPU),Intel is usually pentium2, pentium3, pentium3m, Pentium4, pentium4m, pentium-m, Prescott, noconaNote: pentium3m / pentium4m are […]
-
Gzip’s setting in Apache 2 and squid’s processing method analysis
Gzip can speed up large websites Sometimes the compression ratio is as high as 80%. Recently, it has been tested, at least more than 40%, which is quite good In versions after Apache 2, the module name is not gzip, but mod_ deflateIf you want to open gzip, you must open the following two modulesLoadModule […]
-
Apache pulsar? Kafka pickaxe ц Functional: This is fast э Paper test procedure:/ a>
Please refer to this new method for details. It takes 4 minutes Set the location of the file to pulsar? Kafka’s advance э In addition, the buyer shall purchase the new product to increase the price/ p> The document will be divided into three parts: the first part, the first part, the first part, the […]
-
Test function of regular matching
var fnTest = /xyz/.test(function(){xyz;}) ? / b_ superb/ : /.*/; I am very confused about the usage of the regular expression matching function test/xyz/.test(function(){xyz;}) I looked up the description of the test function in Mozilla Developer CenterExecutes the search for a match between a regular expression and a specified string. Returns true or false. Whether […]
-
Analysis of Python language exception handling test process
This article mainly introduces the python language exception handling test process analysis, the article through the example code is very detailed, for everyone’s study or work has a certain reference learning value, need friends can refer to (1) Exception handling 1. Catch all exceptions try: x = 5 / 0 except: Print (‘Program error ‘) […]