1

I am planning to automate security testing for a web application. I have the selenium code which is developed using JAVA language, now I need to integrate with ZAP.

Kindly help me how to integrate these two and generate the reports for the same.

MoNa
  • 365
  • 4
  • 13
  • 31

1 Answers1

2

You can configure Selenium to use Zap as a proxy. Take a look here for a full solution using WebDriver.io, which is a tiny JS wrapper around selenium. It should give you a high level overview of how to build and run such a solution in the CI. Let me know if you need more help.

Omer Levi Hevroni
  • 1,935
  • 1
  • 15
  • 33
  • I am using Java Language. Can you please suggest how to achieve it. – MoNa Dec 19 '17 at 09:36
  • You can take a look at this [link](https://seleniumhq.github.io/selenium/docs/api/javascript/module/selenium-webdriver/proxy.html) which I also posted in my answer - it showed how to configure selenium to use a proxy. Except that, the rest could be the same IMO – Omer Levi Hevroni Dec 19 '17 at 11:10