Super detailed web automation tutorial - advanced operation of TestCafe page

prefaceThis article follows the previous one to introduce some advanced operations of TestCafe page interaction.1, Mouse drag1. Drag element offsetMethod: t.drag can offset and drag the element relative to the original position.caseimport { Selector } from 'testcafe';fixture element drag.page `https://www.runoob.com/try/try.php?filename=jqueryu ...

Posted by chiefrokka on Mon, 06 Dec 2021 17:14:42 -0800

python+selenium+unittest automated testing framework

preface About the introduction of automated testing, there are many materials on the Internet, which will not be repeated here. UI automated testing is a kind of automated testing and the top layer of the test pyramid. selenium is an automated testing tool applied to the web. It supports multi platform, multi browser and multi language to real ...

Posted by spicey on Mon, 22 Nov 2021 19:12:36 -0800

python+appium automated testing - start appium service in python for appium concurrent testing

Notes from beginners of APP Android automatic test. Please give us more advice on what is wrong 1, Start appium server 1. Start a single appium server through the command line window appium -- Directly open the default 4723 port number appium -p 4723 -- use-p To start the fixed port number appium The server Copy code 2. Start multiple ...

Posted by jorgep on Fri, 19 Nov 2021 22:47:33 -0800

[software testing] let 0 basic pure beginners also have handwritten Python and nanny level tutorials

In the previous article [software testing], 0 basic pure Xiaobai can also write python. Nanny level tutorial (III) shares the basic knowledge of Python. We will continue to share other contents this time. catalogue 1, List 2, List element NEW 3, List element modification 4, Query list elements 5, Other actions for the list 6, List sortin ...

Posted by Warptweet on Fri, 19 Nov 2021 05:27:20 -0800

2021 most complete Python interface test automation tutorial [learning materials attached]

[Abstract] interface definition: interface generally has two meanings. One is API (Application Programming Interface), which is a set of definitions, programs and protocols to realize the mutual communication between computer software through API interface. The other is interface, which is a specification of object-oriented languages such as ja ...

Posted by daredevil88 on Thu, 28 Oct 2021 00:09:07 -0700

Server real-time monitoring platform: Telegraf+InfluxDB+Grafana

This chapter mainly explains how to build and deploy in CentOS environment 1,InfluxDB InfluxDB is an open source distributed time series, events and indicators database written in Go language without external dependence. Similar databases include Elasticsearch, Graphite, etc. Download address: https://portal.influxdata.com/downloads/ 1.1 ...

Posted by Jak-S on Fri, 22 Oct 2021 06:57:20 -0700

How does MongoDB perform performance testing? Take a look at this summary

01 MongoDB test procedure description This paper mainly tests the efficiency of mongodb inserting data. Using the mongodb secondary development interface provided by a teacher. The data structure is: Struct keyvalmeta{ Char name[64]; Int valType; DateTime nStartTime; DateTime nEndTime; Int nUserDefMetaSize; Char* pUserDefMetaDat; } ...

Posted by centenial on Tue, 19 Oct 2021 23:24:09 -0700

On software development model

There are five software development models: waterfall model, spiral model, iterative model, incremental model and agile model. 1, Waterfall model 1.1 process 1.2 advantages and disadvantages advantage: Emphasize the stage of development; Emphasize early planning and demand survey; Emphasize product testing. Disadvantages: Relyin ...

Posted by billabong0202 on Tue, 28 Sep 2021 19:09:30 -0700

Not technically, because the Pytest framework

summary pytest is a very mature and full-featured Python testing framework. Its main features are as follows: Simple and flexible, easy to use, rich documents; Support parameterization, which can fine-grained control the test cases to be tested; It can support simple unit testing and complex function testing, and can also be used for selen ...

Posted by bough on Wed, 22 Sep 2021 07:16:59 -0700

Golang benchmark - Test code performance

preface Performance is a very important indicator when optimizing code or determining algorithm selection. For example, I need to use hash algorithm for signature when making requirements recently. At first, I wanted to use md5 without thinking about it, and then a few big words popped up on the IDE: md5 has known security problems, so it is r ...

Posted by benphelps on Tue, 14 Sep 2021 12:03:01 -0700