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

[S01E02] iOS unit test

what: What is unit testing how: How to conduct unit tests why: Why unit testing 1, What is unit testing 1. Unit test Unit can be simply understood as a method, so unit testing is testing for methods 2. The position of unit test in the test Generally speaking, small tests are used to ensure code quality, and medium and large tests are us ...

Added by tmed on Fri, 14 Jan 2022 02:55:39 +0200

Learn this article about continuous integration of at least 10K salary increase: appium+python+jenkins automated test framework

catalogue 1.1 common app types: 1.2 why Appium 1.3 Appium benefits 1.4 Appium design (2) appium client and server parameters 2.1 Appium client 2.2 Appium server 2.2. 1 Principle 2.2.2 Server -args startup parameters (3) Find_element element positioning 3.1 positioning method of element: 3.2 Selenium positioning mode: 3.3 Appium ...

Added by PrObLeM on Wed, 05 Jan 2022 17:53:36 +0200

Exclusive hard goods: appium2 0 + new solutions for single touch and multi touch

♥ preface At appium2 Before 0, the touch screen operation on mobile devices, single finger touch screen and multi finger touch screen were implemented by TouchAction class and multi action class respectively. At appium2 After 0, these 2 methods will be discarded. "[Deprecated] 'TouchAction' action is deprecated. Please use W3C actio ...

Added by WesPear on Wed, 05 Jan 2022 17:43:35 +0200

Learn a little every day: data encapsulation of excel test cases in python

python involves the test case data encapsulation of excel, and there are several third-party libraries. For example, the relationship between lxlwt and xlwt 1. Package excel test case reading function Encapsulate the operation steps of reading function in excel test case 1. Open workbook workBook =xlrd. open_ Workbook (file path) 2. Get wo ...

Added by alan007 on Wed, 05 Jan 2022 12:36:45 +0200

JMeter usage problem: store interface return variables as csv files

When JMeter is used for interface testing, there are tests of multiple threads and interfaces in the whole jmx test plan. However, interfaces can be classified, such as business interface, query interface, update interface, etc. Considering that the automatic interface test is generally one-time and has a complete closed-loop link, the genera ...

Added by CNibbana on Sun, 02 Jan 2022 20:44:14 +0200

Master the simplest ui automation testing framework!!!

Build the test framework and analyze the framework directory config: configuration file. Put all project related configurations in this folder. python supports yaml and ini ini file introduction Start with [section] End with [option=value] Remarks in; start The section name cannot be duplicated Introduction to yaml file Starting with ...

Added by mikeeeeeeey on Sat, 01 Jan 2022 01:08:20 +0200

Oracle query statement

1, Multi table query multi-table query   -- merge union   -- intersection intersect   -- subtraction minus The INTERSECT operator returns only the common rows of the two queries For example: SELECT orderno FROM order_master INTERSECT SELECT orderno FROM order_detail; The MINUS operator returns rows that appear in the sec ...

Added by MVSS on Tue, 28 Dec 2021 15:01:09 +0200

Selenium | after page Jump, you can't locate the element. How to break it?

This article is excerpted from the internal textbook of Hogwarts Testing Institute When you want to locate an element, if you can't locate it, you should consider whether the browser has embedded a frame window or the element you want to find is in the newly opened window. At this time, frame is required Switch between or windows. frame is ...

Added by shivabharat on Mon, 27 Dec 2021 19:45:45 +0200

Automatic measurement foundation operation

1, Automated testing 1.1 automated testing Automated testing is the process of transforming human driven testing into machine execution. 1.2 what kind of projects are suitable for automated testing 1) Software requirements change infrequently 2) The project cycle is relatively long (at least one year, preferably self-developed products) 3 ...

Added by DChiuch on Thu, 23 Dec 2021 16:29:23 +0200