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 nameUsage
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");
Comment
Create separate report section for website opening