Hi All,
I am running the ZAP using command line daemon mode:
Command is: "zap.bat -daemon -port 8500 -host localhost -quickout D:\SampleZAPReport.html "
Bckground:
I have set of automated set of test cases using selenium so i did set the proxy as shown below:
Proxy proxy = new Proxy();
proxy.setHttpProxy("localhost:8500");
proxy.setFtpProxy("localhost:8500");
proxy.setSslProxy("localhost:8500");
proxy.setAutodetect(false);
proxy.setProxyType(ProxyType.MANUAL);
capability = DesiredCapabilities.firefox();
capability.setCapability(CapabilityType.PROXY, proxy);
capability.setCapability("unexpectedAlertBehaviour", "ignore");
capability.setCapability(FirefoxDriver.PROFILE, profile);
I started running the selenium script and all the test cases got passed with out having any issue. But the report generated(D:\SampleZAPReport.html ) have blank info.
Could you please let me know how to generate the zap report when we run zap using daemon mode?
System info:
Windows 7.
Thanks,
-Hariprasad