Reputation: 1785
I am new in load testing. I want to use gatling for testing. seems to be based on scala ( which runs over JVM)
I want to use some old selenium tests ( java based ) Is it possible to make a java project and run both ?
Upvotes: 2
Views: 3121
Reputation: 168092
I believe the easiest option is using Taurus tool which can launch Gatling and Selenium tests using single simple YAML configuration file like:
---
execution:
- executor: gatling
scenario:
script: /path/to/your/GatlingTest.scala
simulation: tests.gatling.BasicSimulation
- executor: "selenium"
scenario:
script: "/path/to/your/SeleniumTest.java"
Upvotes: 0
Reputation: 7038
Well, yes, of course! Just make sure you don't have any library version collision. If that happens, you'll have to isolate in different project/modules.
Upvotes: 1