CN112084108A - Test script generation method and device and related components - Google Patents

Test script generation method and device and related components Download PDF

Info

Publication number
CN112084108A
CN112084108A CN202010886452.XA CN202010886452A CN112084108A CN 112084108 A CN112084108 A CN 112084108A CN 202010886452 A CN202010886452 A CN 202010886452A CN 112084108 A CN112084108 A CN 112084108A
Authority
CN
China
Prior art keywords
test script
fields
operation log
function
generating
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.)
Pending
Application number
CN202010886452.XA
Other languages
Chinese (zh)
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.)
Shandong Yingxin Computer Technology Co Ltd
Original Assignee
Shandong Yingxin Computer 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 Shandong Yingxin Computer Technology Co Ltd filed Critical Shandong Yingxin Computer Technology Co Ltd
Priority to CN202010886452.XA priority Critical patent/CN112084108A/en
Publication of CN112084108A publication Critical patent/CN112084108A/en
Pending legal-status Critical Current

Links

Images

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

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)
  • Debugging And Monitoring (AREA)

Abstract

The application discloses a test script generation method, which comprises the following steps: acquiring an operation log corresponding to a function to be tested; analyzing the operation log into a plurality of fields, wherein the fields comprise input parameters, a calling interface and execution time; and generating a test script for testing the function to be tested according to the plurality of fields. The reliability of the test script can be improved, manual participation is not needed in the compiling process of the test script, and the compiling efficiency of the automatic test script is improved, so that the functional test efficiency is improved, and the project development speed is accelerated. The application also discloses a test script generation device, electronic equipment and a readable storage medium, which have the beneficial effects.

Description

Test script generation method and device and related components
Technical Field
The present disclosure relates to the field of functional testing, and in particular, to a method and an apparatus for generating a test script, and a related component.
Background
Software may be subject to problems whenever it changes at any stage in its lifecycle. The software changes may result from errors being discovered and modifications being made, or may result from new modules being added during the integration or maintenance phase. However, modifying the error or adding a new module may affect the original code, resulting in a situation where the function is not available. Therefore, whenever a change occurs in the software, the existing functionality must be retested to determine if the modification has served its intended purpose, and to check if the modification has compromised the original normal functionality. Regression testing is required to verify the correctness of the modifications and their impact.
The regression test is used as a component of the software life cycle, and occupies a great workload proportion in the whole software test process, and multiple regression tests can be carried out at each stage of software development. In the prior art, regression testing is generally performed by compiling a test case and then manually testing by a tester, so that the manual testing efficiency is low and the time consumption is long; or the test scripts are compiled through test cases for automatic testing, but the test scripts still need to be compiled manually, so that a great deal of effort is needed for automatic testing.
Therefore, how to provide a solution to the above technical problem is a problem that needs to be solved by those skilled in the art.
Disclosure of Invention
The application aims to provide a test script generation method and device, an electronic device and a readable storage medium, the reliability of the test script can be improved, manual participation is not needed in the compiling process of the test script, the compiling efficiency of the automatic test script is improved, the functional test efficiency is improved, and the project development speed is accelerated.
In order to solve the above technical problem, the present application provides a test script generating method, including:
acquiring an operation log corresponding to a function to be tested;
analyzing the operation log into a plurality of fields, wherein the fields comprise input parameters, a calling interface and execution time;
and generating a test script for testing the function to be tested according to the plurality of fields.
Preferably, the process of obtaining the operation log corresponding to the function to be tested includes:
acquiring an operation log corresponding to the function to be tested according to the collection rule;
wherein the collection rules comprise collection paths and/or collection formats and/or collection time periods and/or collection types.
Preferably, after the operation log corresponding to the function to be tested is obtained, the test script generating method further includes:
reading the operation log into a memory;
correspondingly, the process of parsing the operation log into a plurality of fields includes:
and analyzing the operation log into a plurality of fields in the memory.
Preferably, a plurality of the fields further include an execution result and an upper interface.
Preferably, after the parsing the operation log into a plurality of fields, the test script generating method further includes:
determining a parameter rule corresponding to the input parameter;
correspondingly, the process of generating the test script for testing the function to be tested according to the plurality of fields includes:
and generating a test script for testing the function to be tested according to the plurality of fields and the parameter rule.
Preferably, the process of determining the parameter rule corresponding to the input parameter includes:
identifying the type and order of the input parameters;
and determining parameter rules according to the types and the sequence.
Preferably, after identifying the type and the sequence of the input parameters, the test script generating method further includes:
judging whether the input parameters to be adjusted of which the types are not identified exist or not;
if so, determining the type of the input parameter to be adjusted as a default type, and marking.
In order to solve the above technical problem, the present application further provides a test script generating apparatus, including:
the acquisition module is used for acquiring an operation log corresponding to the function to be tested;
the analysis module is used for analyzing the operation log into a plurality of fields, and the fields comprise input parameters, a calling interface and execution time;
and the generating module is used for generating a test script for testing the function to be tested according to the fields.
In order to solve the above technical problem, the present application further provides an electronic device, including:
a memory for storing a computer program;
a processor for implementing the steps of the test script generation method as described in any one of the above when the computer program is executed.
To solve the above technical problem, the present application further provides a computer-readable storage medium, on which a computer program is stored, and the computer program, when executed by a processor, implements the steps of the test script generation method according to any one of the above.
The application provides a test script generation method, considering that in practical application, each function of software runs to generate a corresponding operation log, and based on the operation log, the application firstly obtains the operation log corresponding to the function to be tested, analyzes the operation log to obtain a plurality of fields such as input parameters, a calling interface, execution time and the like, and generates a test script through the fields, so that the method meets the requirements of practical engineering, improves the reliability of the test script, does not need manual participation in the writing process of the test script, improves the writing efficiency of the automatic test script, and in addition, the execution time can express the execution sequence of the calling interface, ensures that the test script can be executed according to the sequence, improves the functional test efficiency, and accelerates the project development speed. The application also provides a test script generation device, electronic equipment and a readable storage medium, and the test script generation device, the electronic equipment and the readable storage medium have the same beneficial effects as the test script generation method.
Drawings
In order to more clearly illustrate the embodiments of the present application, the drawings needed for the embodiments will be briefly described below, and it is obvious that the drawings in the following description are only some embodiments of the present application, and that other drawings can be obtained by those skilled in the art without inventive effort.
FIG. 1 is a flowchart illustrating steps of a test script generation method according to the present application;
fig. 2 is a schematic structural diagram of a test script generating apparatus provided in the present application.
Detailed Description
The core of the application is to provide a test script generation method and device, an electronic device and a readable storage medium, the reliability of the test script can be improved, manual participation is not needed in the compiling process of the test script, the compiling efficiency of the automatic test script is improved, the functional test efficiency is improved, and the project development speed is accelerated.
In order to make the objects, technical solutions and advantages of the embodiments of the present application clearer, the technical solutions in the embodiments of the present application will be clearly and completely described below with reference to the drawings in the embodiments of the present application, and it is obvious that the described embodiments are some embodiments of the present application, but not all embodiments. All other embodiments, which can be derived by a person skilled in the art from the embodiments given herein without making any creative effort, shall fall within the protection scope of the present application.
Referring to fig. 1, fig. 1 is a flowchart illustrating steps of a test script generation method provided in the present application, where the test script generation method includes:
s101: acquiring an operation log corresponding to a function to be tested;
it can be understood that after the software is started, when any function is executed, an operation log is correspondingly generated, and the operation log records relevant data when the function is executed. Therefore, the parameters for generating the test script are obtained through the operation log, the actual application environment is better met, and the reliability of the test script is improved. Specifically, in this embodiment, the operation log corresponding to the function to be tested may be obtained according to a preset period, or the operation log corresponding to the function to be tested may be obtained when the obtaining instruction is received, and for the trigger condition for obtaining the operation log, this embodiment is not specifically limited herein.
S102: analyzing the operation log into a plurality of fields, wherein the fields comprise input parameters, a calling interface and execution time;
specifically, the operation log is parsed into a plurality of fields according to a preset parsing rule, and the plurality of fields include, but are not limited to, an input parameter, a call interface, a superior interface, an execution result, an execution time, and the like. The superior interface and the calling interface are in an incidence relation to reflect the calling relation between the interfaces. It can be understood that when software executes a certain function, multiple interfaces may need to be called, and therefore, the execution sequence of each calling interface can be determined according to the execution time, so that the automated test script generated in S103 can be executed in sequence, and the test efficiency is improved.
Further, the plurality of analyzed fields are stored in a storage medium for subsequent calling.
S103: and generating a test script for testing the function to be tested according to the plurality of fields.
Specifically, the execution time sequence and the interface calling sequence can be determined through the calling interface and the execution time obtained in the step S102, and the automatic test script for testing the function to be tested is generated according to the input parameters, the execution time sequence and the interface calling sequence.
On the basis of the above-described embodiment:
as a preferred embodiment, the process of obtaining the operation log corresponding to the function to be tested includes:
acquiring an operation log corresponding to the function to be tested according to the collection rule;
wherein the collection rule comprises a collection path and/or a collection format and/or a collection time period and/or a collection type.
Specifically, before executing S101, the test case generation method provided by the present application further includes an operation of setting a collection rule, where the collection rule includes, but is not limited to, any one or more of collecting the operation logs according to a preset collection path, collecting the operation logs according to a preset collection format, collecting the operation logs according to a preset collection time period, and collecting the operation logs according to a preset log collection type. Considering that data in the operation log can be continuously overlapped and updated when the software runs a certain function, for example, when the requirement of the certain function on the time efficiency is high, a collection rule can be preset to collect the operation log within a preset time period from the current time. Therefore, in order to facilitate the targeted test of the function to be tested, the operation log is collected according to the preset collection rule, so that the test efficiency is further improved.
Of course, the collection rule may include the above rule, and other collection rules may be set according to actual engineering requirements, and the present application is not specifically limited herein.
As a preferred embodiment, after obtaining the operation log corresponding to the function to be tested, the test script generating method further includes:
reading the operation log into a memory;
accordingly, the process of parsing the oplog into a plurality of fields includes:
the oplog is parsed into a plurality of fields in memory.
Specifically, in consideration of the fact that in the prior art, generally, the operation log needs to be stored in the hard disk in a file form, the file in the hard disk is called for reanalysis, and the data processing speed is slow, therefore, after the operation log is obtained, the operation log is read into the memory, and the operation log is directly analyzed in the memory, so that multiple calls of the operation log are avoided, the data processing speed is increased, the test script compiling efficiency is increased, the function test efficiency is increased, and meanwhile, the occupation of the storage space of the hard disk can be reduced. As a preferred embodiment, after the current test script is written, the operation log can be cleared from the memory to release the memory space.
As a preferred embodiment, after parsing the operation log into a plurality of fields, the test script generating method further includes:
determining a parameter rule corresponding to the input parameter;
correspondingly, the process of generating the test script for testing the function to be tested according to the plurality of fields comprises the following steps:
and generating a test script for testing the function to be tested according to the plurality of fields and the parameter rule.
Specifically, considering that input parameters of some functions have input limitations, in order to ensure that a test script can effectively test the function to be tested, a parameter rule corresponding to the input parameter is determined first, and the input parameter is limited, for example, a user name and a password generally have input limitations, such as a user name requiring english, a password requiring large/small writing, and the like, so that the corresponding parameter rule is generated according to the input limitations, and for example, if the input parameter is an object, an interface for generating the object is added, and the edited parameter rule is stored in a storage medium. And subsequently, the test script is generated through the acquired input parameters, the call interface, the superior interface, the execution result, the execution time and the parameter rule, so that the effectiveness of the test script is ensured, the condition of failure of the functional test is reduced as much as possible, and the functional test efficiency is further improved.
As a preferred embodiment, the process of determining the parameter rule corresponding to the input parameter includes:
identifying the type and sequence of input parameters;
and determining parameter rules according to types and sequences. As a preferred embodiment, after identifying the type and the sequence of the input parameters, the test script generating method further includes:
judging whether input parameters to be adjusted of which types are not identified exist or not;
if yes, determining the type of the input parameter to be adjusted as a default type, and marking.
Specifically, considering that different development languages are used by software, different parameter types may exist, and in order to ensure that the generated test script can be tested reliably and efficiently, the type and the sequence of the input parameters are determined first, the type of the input parameters, including but not limited to character strings, shaping, boolean, array, objects, and the like, can be automatically identified in this embodiment, and parameter rules are determined according to the type and the sequence of the input parameters, so that the reliability of the subsequently generated test script is higher.
And regarding the input parameters of which the types are not identified as input parameters to be adjusted, defaulting the types of the input parameters to be adjusted as character strings, marking the input parameters to be adjusted so that a tester can determine the types of the input parameters to be adjusted again after seeing the marks, modifying the defaulted character strings into the actual types of the input parameters, and then generating parameter rules according to the actual types and the sequence.
Referring to fig. 2, fig. 2 is a schematic structural diagram of a test script generating device provided in the present application, where the test script generating device includes:
the acquisition module 1 is used for acquiring an operation log corresponding to a function to be tested;
the analysis module 2 is used for analyzing the operation log into a plurality of fields, and the fields comprise input parameters, a calling interface and execution time;
and the generating module 3 is used for generating a test script for testing the function to be tested according to the plurality of fields.
It can be seen that, in the embodiment, in practical application, in consideration of the fact that in the running of each function of software, a corresponding operation log is generated, based on this, the application first obtains the operation log corresponding to the function to be tested, and parses the operation log to obtain a plurality of fields such as input parameters, a call interface, execution time and the like, and generates a test script through the fields, so that the requirements of practical engineering are better met, the reliability of the test script is improved, manual participation is not required in the compiling process of the test script, the compiling efficiency of an automatic test script is improved, in addition, the execution time can represent the sequential execution sequence of the call interfaces, the test script can be executed according to the sequence, the function test efficiency is improved, and the project development speed is.
As a preferred embodiment, the obtaining module 1 is specifically configured to:
acquiring an operation log corresponding to the function to be tested according to the collection rule;
wherein the collection rule comprises a collection path and/or a collection format and/or a collection time period and/or a collection type.
As a preferred embodiment, the test script generating apparatus further includes:
the storage module is used for reading the operation log into the memory after the operation log corresponding to the function to be tested is obtained;
correspondingly, the parsing module 2 is specifically configured to:
the oplog is parsed into a plurality of fields in memory.
As a preferred embodiment, the plurality of fields further includes an execution result and an upper level interface.
As a preferred embodiment, the test script generating apparatus further includes:
the determining module is used for determining a parameter rule corresponding to the input parameter;
correspondingly, the generating module 3 is specifically configured to:
and generating a test script for testing the function to be tested according to the plurality of fields and the parameter rule.
As a preferred embodiment, the determining module includes:
the identification unit is used for identifying the type and the sequence of the input parameters;
and the determining unit is used for determining the parameter rule according to the type and the sequence.
As a preferred embodiment, the test script generating apparatus further includes:
and the marking module is used for judging whether the input parameters to be adjusted with the types which are not identified exist, if so, determining the types of the input parameters to be adjusted as default types and marking.
In another aspect, the present application further provides an electronic device, including:
a memory for storing a computer program;
a processor for implementing the steps of the test script generation method as described in any one of the above embodiments when executing the computer program.
For an introduction of an electronic device provided in the present application, please refer to the above embodiments, which are not described herein again.
The electronic equipment provided by the application has the same beneficial effects as the test script generation method.
In another aspect, the present application further provides a computer-readable storage medium, on which a computer program is stored, and the computer program, when executed by a processor, implements the steps of the test script generation method as described in any one of the above embodiments.
For the introduction of a computer-readable storage medium provided in the present application, please refer to the above embodiments, which are not described herein again.
The computer-readable storage medium provided by the application has the same beneficial effects as the test script generation method.
It is further noted that, in the present specification, 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. Also, 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 an … …" does not exclude the presence of other identical elements in a process, method, article, or apparatus that comprises the element.
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.

Claims (10)

1. A test script generation method, comprising:
acquiring an operation log corresponding to a function to be tested;
analyzing the operation log into a plurality of fields, wherein the fields comprise input parameters, a calling interface and execution time;
and generating a test script for testing the function to be tested according to the plurality of fields.
2. The method according to claim 1, wherein the step of obtaining the operation log corresponding to the function to be tested comprises:
acquiring an operation log corresponding to the function to be tested according to the collection rule;
wherein the collection rules comprise collection paths and/or collection formats and/or collection time periods and/or collection types.
3. The method for generating a test script according to claim 1, wherein after the obtaining of the operation log corresponding to the function to be tested, the method for generating a test script further comprises:
reading the operation log into a memory;
correspondingly, the process of parsing the operation log into a plurality of fields includes:
and analyzing the operation log into a plurality of fields in the memory.
4. The test script generation method of claim 1, wherein a plurality of the fields further comprise an execution result and an upper level interface.
5. The method according to any one of claims 1 to 4, wherein after parsing the operation log into a plurality of fields, the method further comprises:
determining a parameter rule corresponding to the input parameter;
correspondingly, the process of generating the test script for testing the function to be tested according to the plurality of fields includes:
and generating a test script for testing the function to be tested according to the plurality of fields and the parameter rule.
6. The method according to claim 5, wherein the step of determining the parameter rule corresponding to the input parameter comprises:
identifying the type and order of the input parameters;
and determining parameter rules according to the types and the sequence.
7. The test script generation method of claim 6, wherein after identifying the type and order of the input parameters, the test script generation method further comprises:
judging whether the input parameters to be adjusted of which the types are not identified exist or not;
if so, determining the type of the input parameter to be adjusted as a default type, and marking.
8. A test script generating apparatus, comprising:
the acquisition module is used for acquiring an operation log corresponding to the function to be tested;
the analysis module is used for analyzing the operation log into a plurality of fields, and the fields comprise input parameters, a calling interface and execution time;
and the generating module is used for generating a test script for testing the function to be tested according to the fields.
9. An electronic device, comprising:
a memory for storing a computer program;
a processor for implementing the steps of the test script generation method of any one of claims 1 to 7 when executing the computer program.
10. A computer-readable storage medium, characterized in that a computer program is stored on the computer-readable storage medium, which computer program, when being executed by a processor, carries out the steps of the test script generation method according to any one of claims 1 to 7.
CN202010886452.XA 2020-08-28 2020-08-28 Test script generation method and device and related components Pending CN112084108A (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN202010886452.XA CN112084108A (en) 2020-08-28 2020-08-28 Test script generation method and device and related components

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN202010886452.XA CN112084108A (en) 2020-08-28 2020-08-28 Test script generation method and device and related components

Publications (1)

Publication Number Publication Date
CN112084108A true CN112084108A (en) 2020-12-15

Family

ID=73729626

Family Applications (1)

Application Number Title Priority Date Filing Date
CN202010886452.XA Pending CN112084108A (en) 2020-08-28 2020-08-28 Test script generation method and device and related components

Country Status (1)

Country Link
CN (1) CN112084108A (en)

Cited By (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN113466566A (en) * 2021-05-26 2021-10-01 山东英信计算机技术有限公司 Trigger type signal acquisition method and device
CN113760529A (en) * 2021-01-15 2021-12-07 北京沃东天骏信息技术有限公司 Interface execution method, device, equipment and readable storage medium

Citations (8)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN101394646A (en) * 2008-11-06 2009-03-25 北京天碁科技有限公司 Software test method and system
US20140245070A1 (en) * 2013-02-27 2014-08-28 International Business Machines Corporation Automated execution of functional test scripts on a remote system within a unit testing framework
US20150278075A1 (en) * 2014-03-26 2015-10-01 Mckesson Financial Holdings Apparatuses, methods, and computer program products for conducting automated tests
CN106341684A (en) * 2016-09-05 2017-01-18 Tcl集团股份有限公司 Method and system for automatically generating Android TV test script
WO2018120721A1 (en) * 2016-12-30 2018-07-05 上海壹账通金融科技有限公司 Method and system for testing user interface, electronic device, and computer readable storage medium
CN109828900A (en) * 2018-12-14 2019-05-31 深圳壹账通智能科技有限公司 Test script automatic generation method, device, electronic equipment and storage medium
WO2019153472A1 (en) * 2018-02-07 2019-08-15 平安科技(深圳)有限公司 Automated interface testing method, device, equipment, and storage medium
CN110543405A (en) * 2019-08-15 2019-12-06 平安普惠企业管理有限公司 Log display method and device, storage medium and computer equipment

Patent Citations (8)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN101394646A (en) * 2008-11-06 2009-03-25 北京天碁科技有限公司 Software test method and system
US20140245070A1 (en) * 2013-02-27 2014-08-28 International Business Machines Corporation Automated execution of functional test scripts on a remote system within a unit testing framework
US20150278075A1 (en) * 2014-03-26 2015-10-01 Mckesson Financial Holdings Apparatuses, methods, and computer program products for conducting automated tests
CN106341684A (en) * 2016-09-05 2017-01-18 Tcl集团股份有限公司 Method and system for automatically generating Android TV test script
WO2018120721A1 (en) * 2016-12-30 2018-07-05 上海壹账通金融科技有限公司 Method and system for testing user interface, electronic device, and computer readable storage medium
WO2019153472A1 (en) * 2018-02-07 2019-08-15 平安科技(深圳)有限公司 Automated interface testing method, device, equipment, and storage medium
CN109828900A (en) * 2018-12-14 2019-05-31 深圳壹账通智能科技有限公司 Test script automatic generation method, device, electronic equipment and storage medium
CN110543405A (en) * 2019-08-15 2019-12-06 平安普惠企业管理有限公司 Log display method and device, storage medium and computer equipment

Cited By (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN113760529A (en) * 2021-01-15 2021-12-07 北京沃东天骏信息技术有限公司 Interface execution method, device, equipment and readable storage medium
CN113466566A (en) * 2021-05-26 2021-10-01 山东英信计算机技术有限公司 Trigger type signal acquisition method and device
CN113466566B (en) * 2021-05-26 2024-02-09 山东英信计算机技术有限公司 Trigger type signal acquisition method and device

Similar Documents

Publication Publication Date Title
CN110442511B (en) Visual embedded point testing method and device
CN110427331B (en) Method for automatically generating performance test script based on interface test tool
CN108984389B (en) Application program testing method and terminal equipment
CN107145437B (en) Java annotation test method and device
CN106776338B (en) Test method, test device and server
CN114546738B (en) Universal test method, system, terminal and storage medium for server
CN107329889B (en) Method for automatically testing C compiler
CN112241360A (en) Test case generation method, device, equipment and storage medium
CN112084108A (en) Test script generation method and device and related components
CN111427771A (en) Code coverage rate analysis method, equipment, server and readable storage medium
CN110990282B (en) Automatic unit testing method
CN113377667A (en) Scene-based testing method and device, computer equipment and storage medium
CN107038117B (en) Web automatic testing method based on definition-reference between event processing functions
US11422917B2 (en) Deriving software application dependency trees for white-box testing
CN111679984A (en) Performance analysis method and device
CN110287700A (en) A kind of iOS application safety analytical method and device
CN117493188A (en) Interface testing method and device, electronic equipment and storage medium
CN111767213B (en) Database check point testing method and device, electronic equipment and storage medium
CN112486811A (en) Interface test method, device, equipment and medium
CN111708712A (en) User behavior test case generation method, flow playback method and electronic equipment
CN115309661A (en) Application testing method and device, electronic equipment and readable storage medium
CN110716859A (en) Method for automatically pushing test cases for modified codes and related device
CN113326046B (en) Method and device for acquiring compiling time length
CN114385514A (en) Method, equipment and storage medium for detecting webpage elements
CN113806231A (en) Code coverage rate analysis method, device, equipment and medium

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
RJ01 Rejection of invention patent application after publication
RJ01 Rejection of invention patent application after publication

Application publication date: 20201215