Project management Maven series - introduction, installation, configuration

Maven series of project management (I) Introduction, installation and configuration catalogue 1. Introduction 2. Installation deployment 2.1,Maven for Win 2.2,Maven for Mac 3. Local repository 4. Central repository 5. Start agent 6. Configuring Maven on Eclipse 1. Introduction Maven is a project management tool, which includes a ...

Posted by prue_ on Sat, 19 Feb 2022 07:31:04 +0100

Explanation of selenium key knowledge

1, Explicit and implicit waiting: 1. Direct wait: Forced wait, the thread sleeps for a period of time time.sleep(3) 2. Implicit wait: Set a waiting time, and poll to find out whether the element appears (0.5 seconds by default). If the element appears within the waiting time, exit the waiting. If it does not appear, throw an exception se ...

Posted by Artem Kozmin on Sun, 13 Feb 2022 09:52:15 +0100

Cypress UI automated test framework learning - Introduction to Cypress Studio, a tool for case editing and script recording

Cypress Studio provides a visual method to generate tests in the test running program by recording the interaction with the application under test. support. click(),. type(),. check(),. uncheck() and select () cypress commands, which will generate test code when interacting with DOM inside cypress studio What will you learn by reading the arti ...

Posted by hexdsl on Sat, 12 Feb 2022 13:46:36 +0100

[summary of common MySQL commands]

mysql commands executed on the mysql client: 1. Use the value "where" to filter and display some selected rows. SELECT * FROM [table name] WHERE [field name] = "whatever"; Display all records with name "Bob" and phone number "3444444". SELECT * FROM [table name] WHERE name = "Bob" AND phone_number = '3444444'; ...

Posted by essjay_d12 on Fri, 11 Feb 2022 12:03:23 +0100

Software testing skills, JMeter stress testing tutorial, request body to automatically sign with sign parameter

1, Foreword The interface request body has a sign signature parameter. The sign signature is generated by splicing the request parameters and finally md5 encrypting the request parameters after removing the sign parameter from the request body Using jmeter to test the interface, we hope to modify the value of the sign parameter in the pos ...

Posted by tylerdurden on Thu, 10 Feb 2022 23:09:55 +0100

Element positioning of Web UI automated testing

At present, in the practical application of automated testing, interface automated testing is widely used, but UI automated testing will not be replaced. Let's see the comparison between the two: Interface automation test is to skip the front-end interface and test the server directly. It has higher execution efficiency and coverage, lower mai ...

Posted by oracle259 on Wed, 09 Feb 2022 05:16:20 +0100

For you who want to get started with unit testing

1, Why unit testing First, let's take a look at the standard software development process As can be seen from the figure, unit testing, as an important part of the development process, is actually an important part to ensure the robustness of the code. However, for various reasons, in daily development, we often don't pay attention to th ...

Posted by Gorf on Thu, 03 Feb 2022 19:51:01 +0100

Traffic playback - SandboxRepeater

1. Introduction 1.1 INTRODUCTION SandboxRepeater is a set of traffic playback tools. The open source ones should not be updated basically. The projects charged by Alibaba are coming out and are still in the public beta stage. At present, the open source traffic playback frameworks include Didi's Rdebub and Alibaba's SandboxRepeater. However, ...

Posted by prowley on Wed, 02 Feb 2022 18:52:17 +0100

Unit test React components

A characteristic of front-end development is that it will involve more user interfaces. When the development scale reaches a certain degree, it is almost doomed that its complexity will increase exponentially. Whether in the initial construction of the code or in the subsequent unavoidable reconstruction and bug correction process, it is often ...

Posted by dnzone on Mon, 31 Jan 2022 05:22:00 +0100

A test engineer walks into a bar

A test engineer walks into a bar and asks for a beer; A test engineer walks into a bar and asks for a cup of coffee; A test engineer walked into a bar and ordered 0.7 glasses of beer; A test engineer walks into a bar and asks for -1 beer; A test engineer walked into a bar and ordered 2 ^ 32 glasses of beer; A test engineer walked into ...

Posted by ephmynus on Sun, 30 Jan 2022 15:12:01 +0100