iriusrisk / bdd-security

BDD Automated Security Tests for Web Applications
http://www.continuumsecurity.net/bdd-intro.html
GNU Affero General Public License v3.0
559 stars 177 forks source link

I have Selenium functional test cases, wanted to trigger same functional testcases from BDD framework #80

Open Ravi8055 opened 6 years ago

Ravi8055 commented 6 years ago

Hi All, I have almost 1500 Selenium functional test cases, wanted to trigger same functional testcases from BDD framework. I need some hint how I can do.

Any lead will be highly appreciated.

Thanks,

stephendv1 commented 6 years ago

You can run the two sets of tests in parallel if they don't share any state (e.g. same login credentials). Additionally, if the navigation steps of your selenium steps can be called from Java, then you can re-use the same steps in the "navigate" method when you implement the INavigable interface.