Hello, I am planning to migrate to TestProject, from my own framework (selenium in Java)
I am testing a web app, that requires tons of test data for each test/scenario (populating SQL database and MongoDB creating various records required to perform tests)
How could I approach that with TestProject? Basically before executing any test/scenario, I need to create lots of SQL records, but I don’t want to run SQL scripts, but be able to programmatically manipulate my databases, is there such possibility, without having to write each test in code?
Currently I am using Hibernate in my current framework.
Kind regards.