CN110554967B - Testing method and device for nonstandard control - Google Patents

Testing method and device for nonstandard control Download PDF

Info

Publication number
CN110554967B
CN110554967B CN201910852983.4A CN201910852983A CN110554967B CN 110554967 B CN110554967 B CN 110554967B CN 201910852983 A CN201910852983 A CN 201910852983A CN 110554967 B CN110554967 B CN 110554967B
Authority
CN
China
Prior art keywords
dll
test
control
nonstandard
attribute
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Active
Application number
CN201910852983.4A
Other languages
Chinese (zh)
Other versions
CN110554967A (en
Inventor
叶学莉
韦群跃
李波波
杨丹君
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Zhejiang Supcon Technology Co Ltd
Original Assignee
Zhejiang Supcon Technology Co Ltd
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Zhejiang Supcon Technology Co Ltd filed Critical Zhejiang Supcon Technology Co Ltd
Priority to CN201910852983.4A priority Critical patent/CN110554967B/en
Publication of CN110554967A publication Critical patent/CN110554967A/en
Application granted granted Critical
Publication of CN110554967B publication Critical patent/CN110554967B/en
Active legal-status Critical Current
Anticipated expiration legal-status Critical

Links

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F11/00Error detection; Error correction; Monitoring
    • G06F11/36Preventing errors by testing or debugging software
    • G06F11/3668Software testing
    • G06F11/3672Test management
    • G06F11/3684Test management for test design, e.g. generating new test cases
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F11/00Error detection; Error correction; Monitoring
    • G06F11/36Preventing errors by testing or debugging software
    • G06F11/3668Software testing
    • G06F11/3672Test management
    • G06F11/3688Test management for test execution, e.g. scheduling of test suites
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F11/00Error detection; Error correction; Monitoring
    • G06F11/36Preventing errors by testing or debugging software
    • G06F11/3668Software testing
    • G06F11/3696Methods or tools to render software testable

Landscapes

  • Engineering & Computer Science (AREA)
  • Theoretical Computer Science (AREA)
  • Computer Hardware Design (AREA)
  • Quality & Reliability (AREA)
  • Physics & Mathematics (AREA)
  • General Engineering & Computer Science (AREA)
  • General Physics & Mathematics (AREA)
  • Tests Of Electronic Circuits (AREA)

Abstract

The application discloses a testing method and a testing device for a nonstandard control, wherein the method comprises the following steps: identifying a non-standard control in the target system; encapsulating the attribute value acquisition method of the nonstandard control into DLL; and calling the DLL to realize the test of the nonstandard control. In the testing method, firstly, the nonstandard control in the target system is identified, and the attribute value acquisition method in the nonstandard control is packaged into the DLL, and according to the testing of the nonstandard control of the DLL, the DLL is not changed due to the change of the interface of the target system, so that the testing script does not need to be continuously adjusted.

Description

Testing method and device for nonstandard control
Technical Field
The application relates to the technical field of automatic testing, in particular to a testing method and device for a nonstandard control.
Background
When the UI automation test framework is used for automatic test, the problem that Windows nonstandard control cannot be identified normally exists, wherein the nonstandard control can be custom or obtained by modifying the standard control. The method is mainly used for recording non-standard controls which cannot be identified by a UI automatic test framework, and all operations of a mouse and a keyboard of the non-standard controls are recorded according to X and Y coordinates of a screen to obtain a test script.
In the above process, when the application software changes on the interface (even the resolution changes), the whole test script cannot be used normally and needs to be re-recorded.
Disclosure of Invention
In view of this, the application provides a testing method and device for non-standard control, which is used for solving the problem that the whole test script cannot be normally used and needs to be re-recorded when the application software changes on the interface (even the resolution changes) in the existing automatic testing process, and the specific scheme is as follows:
a method of testing a non-standard control, comprising:
identifying a non-standard control in the target system;
encapsulating the attribute value acquisition method of the nonstandard control into DLL;
and calling the DLL to realize the test of the nonstandard control.
The method, optionally, identifies a non-standard control in the target system, including:
acquiring the identification of each control in the target system;
and searching out non-standard controls from the controls according to the identification.
The method, optionally, encapsulates the attribute value obtaining method of the nonstandard control into a DLL, including:
acquiring each attribute of the nonstandard control;
an attribute value acquisition method is allocated to each attribute;
and packaging the attribute value acquisition methods into DLLs, wherein the DLLs comprise data interfaces of each attribute.
The method, optionally, calls the DLL to implement testing of the nonstandard control, including:
receiving a test request for the nonstandard control, and analyzing the test type of the test request;
selecting a test script matched with the test type;
selecting a data interface matched with the test type from the DLL according to the test script;
and acquiring a corresponding attribute value in the non-standard control according to the test data interface, and testing the non-standard control according to the attribute value.
The method, optionally, further comprises:
the attribute values are passed between the non-standard control and the DLL using a shear plate.
A testing device for a non-standard control, comprising:
the identification module is used for identifying the nonstandard control in the target system;
the packaging module is used for packaging the attribute value acquisition method of the nonstandard control into DLL;
and the calling and testing module is used for calling the DLL to realize the testing of the nonstandard control.
The above apparatus, optionally, the identification module includes:
the identification acquisition unit is used for acquiring the identification of each control in the target system;
and the searching unit is used for searching out non-standard controls from the controls according to the identification.
The above apparatus, optionally, the package module includes:
the attribute acquisition unit is used for acquiring each attribute of the nonstandard control;
an allocation unit, configured to allocate an attribute value acquisition method to each attribute;
and the packaging unit is used for packaging the attribute value acquisition methods into DLLs, wherein the DLLs comprise data interfaces of each attribute.
The above device, optionally, the calling and testing module includes:
the receiving and analyzing unit is used for receiving the test request of the nonstandard control and analyzing the test type of the test request;
the test script selecting unit is used for selecting a test script matched with the test type;
a data interface selecting unit, configured to select a data interface matching the test type in the DLL according to the test script;
and the acquisition and test unit is used for acquiring the corresponding attribute value in the non-standard control according to the test data interface and testing the non-standard control according to the attribute value.
The above device, optionally, further comprises:
and the transmission unit is used for transmitting the attribute value between the nonstandard control and the DLL by adopting a shear plate.
Compared with the prior art, the application has the following advantages:
the application discloses a testing method and a testing device for a nonstandard control, wherein the method comprises the following steps: identifying a non-standard control in the target system; encapsulating the attribute value acquisition method of the nonstandard control into DLL; and calling the DLL to realize the test of the nonstandard control. In the testing method, firstly, the nonstandard control in the target system is identified, and the attribute value acquisition method in the nonstandard control is packaged into the DLL, and according to the testing of the nonstandard control of the DLL, the DLL is not changed due to the change of the interface of the target system, so that the testing script does not need to be continuously adjusted.
Of course, it is not necessary for any one product to practice the application to achieve all of the advantages set forth above at the same time.
Drawings
In order to more clearly illustrate the embodiments of the application or the technical solutions in the prior art, the drawings that are required in the embodiments or the description of the prior art will be briefly described, it being obvious that the drawings in the following description are only some embodiments of the application, and that other drawings may be obtained according to these drawings without inventive effort for a person skilled in the art.
FIG. 1 is a flow chart of a testing method for a nonstandard control disclosed in an embodiment of the application;
FIG. 2 is a flow chart of a method for testing a non-standard control according to an embodiment of the present application;
FIG. 3 is a flowchart of a testing method for a non-standard control according to an embodiment of the present application;
fig. 4 is a block diagram of a testing device for a nonstandard control according to an embodiment of the present application.
Detailed Description
The following description of the embodiments of the present application will be made clearly and completely with reference to the accompanying drawings, in which it is apparent that the embodiments described are only some embodiments of the present application, but not all embodiments. All other embodiments, which can be made by those skilled in the art based on the embodiments of the application without making any inventive effort, are intended to be within the scope of the application.
The previous description of the disclosed embodiments is provided to enable any person skilled in the art to make or use the present application. Various modifications to these embodiments will be readily apparent to those skilled in the art, and the generic principles defined herein may be applied to other embodiments without departing from the spirit or scope of the application. Thus, the present application is not intended to be limited to the embodiments shown herein but is to be accorded the widest scope consistent with the principles and novel features disclosed herein.
The application discloses a testing method and a testing device for a nonstandard control, which are applied to the process of automatically testing the nonstandard control to solve the problems that an automatic testing script cannot be identified, even if the automatic testing is realized by adopting a low-level recording method, when the application software changes on an interface (even the resolution changes), the whole testing script cannot be normally used and needs to be re-recorded, so that the coverage rate and the accuracy of the UI automatic testing are greatly improved, and further, when the application software changes a version or the customization testing is carried out, the smoking testing and the functional verification can be rapidly completed, the testing time is effectively saved, and the investment cost of the testing is reduced. The execution flow of the test method is shown in FIG. 1, and comprises the steps;
s101, identifying a non-standard control in a target system;
in the embodiment of the application, the target system is a system for performing automatic test at present, and consists of standard controls and non-standard controls, and the non-standard controls in the target system are identified by traversing each control in the target system.
S102, packaging the attribute value acquisition method of the nonstandard control into DLL;
in the embodiment of the application, the non-standard control is taken as a GridCtrl control as an example, and the automatic test is carried out based on a UI automatic test framework as an example. And acquiring each attribute of the GridCtrl control, wherein the attribute can be coordinate values of rows and columns, contents of cells, total number of rows and columns and the like. Each attribute is assigned an attribute value acquisition method, and each attribute value acquisition method is packaged into a DLL. Wherein, a data interface is allocated for each attribute in the DLL.
S103, calling the DLL to realize testing of the nonstandard control.
In the embodiment of the application, when a test request is received, the DLL is called according to the test request, the attribute value of the corresponding data interface in the DLL is obtained, and the nonstandard control is tested according to the attribute value.
The application discloses a testing method of a nonstandard control, which comprises the following steps: identifying a non-standard control in the target system; encapsulating the attribute value acquisition method of the nonstandard control into DLL; and calling the DLL to realize the test of the nonstandard control. In the testing method, firstly, the nonstandard control in the target system is identified, and the attribute value acquisition method in the nonstandard control is packaged into the DLL, and according to the testing of the nonstandard control of the DLL, the DLL is not changed due to the change of the interface of the target system, so that the testing script does not need to be continuously adjusted.
In the embodiment of the present application, an execution flow for identifying a nonstandard control in a target system is shown in fig. 2, and includes the steps of:
s201, obtaining the identification of each control in the target system;
in the embodiment of the application, the target system is traversed, and the identifications of the controls in the target control are obtained, wherein the identifications can be IDs, numbers or letters, etc., in the embodiment of the application, the identifications are taken as the IDs for illustration, and the IDs of the nonstandard control and the standard control are distinguished, for example, the IDs of the standard control are three characters, the IDs of the nonstandard control are four characters, or the nonstandard control contains fixed character combinations, etc. In the embodiment of the application, the distinguishing form of the standard control and the non-standard control is limited.
S202, finding out non-standard controls from the controls according to the identification.
In the embodiment of the application, according to the difference between the standard control and the nonstandard control in the mark, the nonstandard control is found out from all the controls of the target system.
In the embodiment of the application, a method flow for calling the DLL to realize the test of the nonstandard control is shown in fig. 3, and the method flow comprises the following steps:
s301, receiving a test request of the nonstandard control, and analyzing a test type of the test request;
in the embodiment of the application, when the target system receives the test request of the nonstandard control, the test request is analyzed, and the test type contained in the test request is obtained, wherein the test type can be a test of cell content, a shear function test, a click function test or an edit function test, and the like.
S302, selecting a test script matched with the test type;
in the embodiment of the application, at the beginning of testing, a corresponding test script is written for each test type, wherein the test script comprises execution logic of a corresponding test function, and the execution logic comprises an execution sequence of a test process and a verification method of a corresponding test request. And establishing an association relation between the test type and the test script matched with the test type, and selecting the test script matched with the association relation from the test scripts according to the association relation. The association relationships may be the same in number, the same in name or other association forms, and in the embodiment of the present application, the specific form of the association relationship is not limited.
S303, selecting a data interface matched with the test type from the DLL according to the test script;
in the embodiment of the application, the test script comprises an attribute value which needs to be acquired for verifying the test request, and a data interface corresponding to the attribute value is searched in the DLL.
S304, acquiring a corresponding attribute value in the nonstandard control according to the test data interface, and testing the nonstandard control according to the attribute value.
In the embodiment of the application, the attribute value is acquired from the test interface, and the nonstandard control is tested by adopting a corresponding verification method according to the attribute value.
In the embodiment of the application, the attribute value is transmitted between the nonstandard control and the DLL by adopting a shear plate. The test method is exemplified based on the above, for example: taking the cell coordinates as an example, the method for the verification layer to call the DLL data interface is as follows:
' function: acquiring cell coordinates
' initial state: interface with list can
' input parameters:
' intHWND: list corresponding handle
' intX-the row in which the selected cell is located
intY column where the selected cell is located
' return value: a data set is returned to the data set,
wherein: getXYPStion (0) is the X coordinate, getXYPStion (1) is the Y coordinate
Function GetXYPostion(intHWND,intX,intY)
extern.DeclaremicLong,"MFCGridCtrl_GetCellPos",
"C:\VxBatch\wUIAdapter.dll","MFCGridCtrl_GetCellPos",
micByRef,micByRef,micLong,micLong,micLong
extern.MFCGridCtrl_GetCellPos x,y,intHWND,intX,intY
Dim ResultXY(1)
ResultXY(0)=x
ResultXY(1)=y
GetXYPostion=ResultXY
End Function
Based on the above-mentioned calling data interface method, the driving layer calls and sets the descriptive quantity parameter and value, and the method is as follows:
' function: setting descriptive-quantity parameters and values
' initial state:
' input parameters: intHWND is handle, intCol selects the line, strName is parameter name, intVal is parameter value
' return value: without any means for
Function BatchCfg_SetDescriptionPara(intHWND,intCol,strName,intVal)
Xyphostion = getxyphostion (intHWND, intCol, 1) '' coordinates of parameter name cells are obtained
Window ("BatchCfg"). Dialog ("descriptive edit parameter"). WinObject ("descriptive name:") Click XYPStion (0), XYPStion (1)
Window ("BatchCfg"), "Dialog (" descriptive Edit parameter ")," WinEdit ("Edit"),. Set strName
Xyphostion = getxyphostion (intHWND, intCol, 2)' obtain coordinates of parameter value cells
Window ("BatchCfg"). Dialog ("descriptive edit parameter"). WinObject ("descriptive name:") Click XYPStion (0), XYPStion (1)
Window ("BatchCfg"), "Dialog (" descriptive Edit parameter ")," WinEdit ("Edit"), "Set intVal
End Function
Based on the above call setting description quantity parameters and values, the method for obtaining the example layer cell coordinates is as follows:
intHWND = getdescriParafwnd 'obtains handle to list in descriptive parameters settings interface'
BatchCfg_ SetDescriptionPara intHWND,1, "high", 100' increment parameter high, corresponding to a value of 100
Batchcfg_ SetDescriptionPara intHWND,2, "Medium", 70' increase parameter Medium, corresponding value of 70
Batchcfg_ SetDescriptionPara intHWND,3, "Low", 0' increase parameter low, corresponding to a value of 0
In the embodiment of the application, specific attribute values are contained among the verification layer, the driving layer and the use case layer, the attribute values are realized by calling the driving layer, and the two driving layers are realized based on the calling of the verification layer to the DLL.
In the embodiment of the application, the attribute acquisition method of the nonstandard control is all through cross-process user-defined system message transmission, has no influence on the function of the target system, and is safe and reliable; the shearing plates are used for transmitting data among the processes, so that the method is convenient and efficient; the UI automation test framework calls a universal DLL interface to carry out secondary packaging, so that multiplexing investment is low;
therefore, the problem that the UI automation test framework identifies the nonstandard control is solved, the nonstandard control is identified and tested in the automation test, the batch test script is enabled to realize the automation test, and the executable degree of the UI automation test is greatly improved. The technology has no influence on the function of the target system, is safe and reliable, can be called by the same method by the same nonstandard control, has high code utilization rate, less development investment, convenient test and use and wide application.
The testing method can be popularized and applied to other software products (such as VF, vxSCADA, PIMS products) as well, only the DLL needs to be packaged, the control attribute is obtained through the window handle of the tested object, and the problem that the UI automation testing framework cannot perfectly execute the automation test on the nonstandard Windows control is solved.
Based on the above-mentioned testing method of a non-standard control, in the embodiment of the present application, a testing device for a non-standard control is provided, where a structural block diagram of the testing device is shown in fig. 4, and the testing device includes:
an identification module 401, a packaging module 402, and a call and test module 403.
Wherein:
the identifying module 401 is configured to identify a nonstandard control in the target system;
the encapsulation module 402 is configured to encapsulate the attribute value acquisition method of the nonstandard control into a DLL;
the calling and testing module 403 is configured to call the DLL to implement testing of the nonstandard control.
The application discloses a testing device of a nonstandard control, which comprises: identifying a non-standard control in the target system; encapsulating the attribute value acquisition method of the nonstandard control into DLL; and calling the DLL to realize the test of the nonstandard control. In the testing device, firstly, the nonstandard control in the target system is identified, the attribute value acquisition method in the nonstandard control is packaged into the DLL, and according to the testing of the nonstandard control by the DLL, the DLL is not changed due to the change of the interface of the target system, so that the test script does not need to be continuously adjusted.
In an embodiment of the present application, the identification module 401 includes:
an identification acquisition unit 404 and a search unit 405.
Wherein:
the identifier obtaining unit 404 is configured to obtain an identifier of each control in the target system;
the searching unit 405 is configured to search for a non-standard control among the controls according to the identifier.
In an embodiment of the present application, the packaging module 402 includes:
an attribute acquisition unit 406, an allocation unit 407, and an encapsulation unit 408.
Wherein:
the attribute obtaining unit 406 is configured to obtain each attribute of the nonstandard control;
the allocation unit 407 is configured to allocate an attribute value acquisition method to each attribute;
the encapsulation unit 408 is configured to encapsulate each attribute value acquisition method into a DLL, where the DLL includes a data interface of each attribute.
In the embodiment of the present application, the calling and testing module 403 includes:
a receiving and parsing unit 409, a test script selecting unit 410, a data interface selecting unit 411, and an acquiring and testing unit 412.
Wherein:
the receiving and analyzing unit 409 is configured to receive a test request for the nonstandard control, and analyze a test type of the test request;
the test script selecting unit 410 is configured to select a test script that matches the test type;
the data interface selecting unit 411 is configured to select, according to the test script, a data interface matching the test type in the DLL;
the acquiring and testing unit 412 is configured to acquire the attribute value corresponding to the nonstandard control according to the test data interface, and test the nonstandard control according to the attribute value.
In the embodiment of the present application, the calling and testing module further includes: a transfer unit 413.
Wherein the method comprises the steps of
The transfer unit 413 is configured to transfer the attribute value between the nonstandard control and the DLL using a clipboard.
It should be noted that, in the present specification, each embodiment is described in a progressive manner, and each embodiment is mainly described as different from other embodiments, and identical and similar parts between the embodiments are all enough to be referred to each other. For the apparatus class embodiments, the description is relatively simple as it is substantially similar to the method embodiments, and reference is made to the description of the method embodiments for relevant points.
Finally, it is further noted that relational terms such as first and second, and the like are used solely to distinguish one entity or action from another entity or action without necessarily requiring or implying any actual such relationship or order between such entities or actions. Moreover, the terms "comprises," "comprising," or any other variation thereof, are intended to cover a non-exclusive inclusion, such that a process, method, article, or apparatus that comprises a list of elements does not include only those elements but may include other elements not expressly listed or inherent to such process, method, article, or apparatus. Without further limitation, an element defined by the phrase "comprising one … …" does not exclude the presence of other like elements in a process, method, article, or apparatus that comprises the element.
For convenience of description, the above devices are described as being functionally divided into various units, respectively. Of course, the functions of each element may be implemented in the same piece or pieces of software and/or hardware when implementing the present application.
From the above description of embodiments, it will be apparent to those skilled in the art that the present application may be implemented in software plus a necessary general hardware platform. Based on such understanding, the technical solution of the present application may be embodied essentially or in a part contributing to the prior art in the form of a software product, which may be stored in a storage medium, such as a ROM/RAM, a magnetic disk, an optical disk, etc., including several instructions for causing a computer device (which may be a personal computer, a server, or a network device, etc.) to execute the method described in the embodiments or some parts of the embodiments of the present application.
The above describes in detail a testing method and device for a nonstandard control provided by the present application, and specific examples are applied to illustrate the principle and implementation of the present application, and the above description of the examples is only used to help understand the method and core idea of the present application; meanwhile, as those skilled in the art will have variations in the specific embodiments and application scope in accordance with the ideas of the present application, the present description should not be construed as limiting the present application in view of the above.

Claims (6)

1. A method for testing a nonstandard control, comprising:
identifying a non-standard control in the target system;
encapsulating the attribute value acquisition method of the nonstandard control into DLL; the method comprises the steps of obtaining each attribute of the nonstandard control, distributing an attribute value obtaining method for each attribute, packaging each attribute value obtaining method into a DLL, and distributing a data interface for each attribute by the DLL;
calling the DLL, acquiring attribute values of corresponding data interfaces in the DLL, and testing the nonstandard control according to the attribute values;
calling the DLL, acquiring attribute values of corresponding data interfaces in the DLL, and testing the nonstandard control according to the attribute values, wherein the method comprises the following steps:
receiving a test request for the nonstandard control, and analyzing the test type of the test request;
selecting a test script matched with the test type;
selecting a data interface matched with the test type from the DLL according to the test script; the test script comprises an attribute value which is required to be acquired by verifying the test request, and a data interface corresponding to the attribute value which is required to be acquired is searched in the DLL;
and acquiring a corresponding attribute value in the non-standard control according to a test data interface, and testing the non-standard control according to the attribute value.
2. The method of claim 1, wherein identifying a non-standard control in the target system comprises:
acquiring the identification of each control in the target system;
and searching out non-standard controls from the controls according to the identification.
3. The method as recited in claim 1, further comprising:
the attribute values are passed between the non-standard control and the DLL using a shear plate.
4. A testing device for a non-standard control, comprising:
the identification module is used for identifying the nonstandard control in the target system;
the packaging module is used for packaging the attribute value acquisition method of the nonstandard control into DLL; the method comprises the steps of obtaining each attribute of the nonstandard control, distributing an attribute value obtaining method for each attribute, packaging each attribute value obtaining method into a DLL, and distributing a data interface for each attribute by the DLL;
the calling and testing module is used for calling the DLL, acquiring attribute values of corresponding data interfaces in the DLL, and testing the nonstandard control according to the attribute values;
the calling and testing module comprises:
the receiving and analyzing unit is used for receiving the test request of the nonstandard control and analyzing the test type of the test request;
the test script selecting unit is used for selecting a test script matched with the test type;
a data interface selecting unit, configured to select a data interface matching the test type in the DLL according to the test script; the test script comprises an attribute value which is required to be acquired by verifying the test request, and a data interface corresponding to the attribute value which is required to be acquired is searched in the DLL;
and the acquisition and test unit is used for acquiring the corresponding attribute value in the non-standard control according to the test data interface and testing the non-standard control according to the attribute value.
5. The apparatus of claim 4, wherein the identification module comprises:
the identification acquisition unit is used for acquiring the identification of each control in the target system;
and the searching unit is used for searching out non-standard controls from the controls according to the identification.
6. The apparatus as recited in claim 4, further comprising:
and the transmission unit is used for transmitting the attribute value between the nonstandard control and the DLL by adopting a shear plate.
CN201910852983.4A 2019-09-10 2019-09-10 Testing method and device for nonstandard control Active CN110554967B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN201910852983.4A CN110554967B (en) 2019-09-10 2019-09-10 Testing method and device for nonstandard control

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN201910852983.4A CN110554967B (en) 2019-09-10 2019-09-10 Testing method and device for nonstandard control

Publications (2)

Publication Number Publication Date
CN110554967A CN110554967A (en) 2019-12-10
CN110554967B true CN110554967B (en) 2023-09-08

Family

ID=68739569

Family Applications (1)

Application Number Title Priority Date Filing Date
CN201910852983.4A Active CN110554967B (en) 2019-09-10 2019-09-10 Testing method and device for nonstandard control

Country Status (1)

Country Link
CN (1) CN110554967B (en)

Citations (11)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN101655817A (en) * 2009-09-24 2010-02-24 成都市华为赛门铁克科技有限公司 Method and apparatus for testing graphical user interface
CN101853204A (en) * 2010-06-01 2010-10-06 华南理工大学 Complex control testing system in windows environment
CN102541728A (en) * 2010-12-14 2012-07-04 北京新媒传信科技有限公司 Method for expanding identifiable control of automatic test tool
CN103064783A (en) * 2011-10-19 2013-04-24 通用电气公司 System and method to carry out function tests by means of repeatedly used dynamic link library (DLL)
CN104572431A (en) * 2013-10-24 2015-04-29 阿里巴巴集团控股有限公司 Test method and test device
CN104572428A (en) * 2013-10-16 2015-04-29 陆璐 Complicated control testing method based on windows operating system
CN106528429A (en) * 2016-11-28 2017-03-22 广东威创视讯科技股份有限公司 UI testing method and device
CN107515821A (en) * 2016-06-17 2017-12-26 百度在线网络技术(北京)有限公司 Components testing method and apparatus
CN107844416A (en) * 2017-10-19 2018-03-27 博雅网络游戏开发(深圳)有限公司 Non-protogenous Android game UI automated testing methods and system
CN109669871A (en) * 2018-12-24 2019-04-23 枫国宏利信息科技服务(成都)有限公司 A method of realizing Oracle Form automatic test
WO2019144681A1 (en) * 2018-01-23 2019-08-01 网易(杭州)网络有限公司 Automated testing method and apparatus, storage medium and electronic device

Family Cites Families (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US9141518B2 (en) * 2008-12-10 2015-09-22 Microsoft Technology Licensing, Llc GUI testing
US9069905B2 (en) * 2012-07-16 2015-06-30 Microsoft Technology Licensing, Llc Tool-based testing for composited systems
US10235279B2 (en) * 2013-07-01 2019-03-19 Hcl Technologies Limited Automation testing of GUI for non-standard displays

Patent Citations (11)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN101655817A (en) * 2009-09-24 2010-02-24 成都市华为赛门铁克科技有限公司 Method and apparatus for testing graphical user interface
CN101853204A (en) * 2010-06-01 2010-10-06 华南理工大学 Complex control testing system in windows environment
CN102541728A (en) * 2010-12-14 2012-07-04 北京新媒传信科技有限公司 Method for expanding identifiable control of automatic test tool
CN103064783A (en) * 2011-10-19 2013-04-24 通用电气公司 System and method to carry out function tests by means of repeatedly used dynamic link library (DLL)
CN104572428A (en) * 2013-10-16 2015-04-29 陆璐 Complicated control testing method based on windows operating system
CN104572431A (en) * 2013-10-24 2015-04-29 阿里巴巴集团控股有限公司 Test method and test device
CN107515821A (en) * 2016-06-17 2017-12-26 百度在线网络技术(北京)有限公司 Components testing method and apparatus
CN106528429A (en) * 2016-11-28 2017-03-22 广东威创视讯科技股份有限公司 UI testing method and device
CN107844416A (en) * 2017-10-19 2018-03-27 博雅网络游戏开发(深圳)有限公司 Non-protogenous Android game UI automated testing methods and system
WO2019144681A1 (en) * 2018-01-23 2019-08-01 网易(杭州)网络有限公司 Automated testing method and apparatus, storage medium and electronic device
CN109669871A (en) * 2018-12-24 2019-04-23 枫国宏利信息科技服务(成都)有限公司 A method of realizing Oracle Form automatic test

Also Published As

Publication number Publication date
CN110554967A (en) 2019-12-10

Similar Documents

Publication Publication Date Title
CN109783388B (en) UI (user interface) automatic testing method and device and electronic equipment
CN109034188B (en) Method and device for acquiring machine learning model, equipment and storage medium
CN110096424B (en) Test processing method and device, electronic equipment and storage medium
CN104598380A (en) Method and system for automatic testing based on control
CN103678105A (en) Page code testing method and device
CN110320318B (en) Sample analysis apparatus, method and storage medium
CN111475417A (en) Automatic testing method, device, equipment and storage medium
CN105740144A (en) Automated testing method and system for Android mobile Terminal
CN106488539A (en) The processing method of WiFi resource and system in terminal
CN109801677A (en) Sequencing data automated analysis method, apparatus and electronic equipment
CN107861765B (en) Product configuration method, apparatus, and computer-readable storage medium
CN111353143A (en) Sensitive authority detection method and device and storage medium
CN107135423A (en) The method and device of application program in a kind of startup set top box
CN110554967B (en) Testing method and device for nonstandard control
CN111581087A (en) Application program testing method and device
CN112395204B (en) Method, system, related device and medium for obtaining test coverage rate
CN112416995B (en) Data statistics method, device, computer equipment and storage medium
CN108920217B (en) Reconstruction method for reducing non-reentrant function
CN103678054B (en) Test method and device used for BACnet equipment
CN111797016A (en) Application program testing method, device, storage medium and device
CN109408391A (en) Software System Integrated Testing system based on continuous integrating technology
CN109445964B (en) Method and device for data transmission with SAP system in external system
CN115514993B (en) Operation control method and operation control system of cloud machine
CN109408392A (en) Software System Integrated Testing method based on continuous integrating technology
CN112733516B (en) Method, device, equipment and storage medium for processing quick message

Legal Events

Date Code Title Description
PB01 Publication
PB01 Publication
SE01 Entry into force of request for substantive examination
SE01 Entry into force of request for substantive examination
GR01 Patent grant
GR01 Patent grant