Method Report.EndSection

Ends the Result Section with the name. If the current section has the different name, it will use the next session with the given name

Usage

Function ZAP.Report.EndSection ( 
    String SectionName
)

Parameters

SectionName

Type: String

Section Name

Returns

True if Result Block is found, otherwise - false

Example

VBScript

'create separate report section
Zap.Report.StartSection "Open Website"
Application("zap").Launch "chrome", "www.zaptest.com"
Application("zap").View("Homepage").Object("ZAPTEST").Exist
Zap.Report.EndSection "Open Website"

JavaScript

// create separate report section
Zap.Report.StartSection("Open Website");
Application("zap").Launch("chrome", "www.zaptest.com");
Application("zap").View("Homepage").Object("ZAPTEST").Exist();
Zap.Report.EndSection("Open Website");

Documentation Categories

ZAPTEST

FARM

LOAD