Hi Everyone,
we have a very large .Net Core MVC app and a lot of the tests could be made easier if we had a way to dynamically create the tests (vs recording or putting it all in by hand). Here is the scenario:
- We have many controllers which have data entry/index screens all of which are of one of five types
- The url is always uri/<Controller Name>/Create or Edit or Index etc.
- We know all the pieces that make up the controller names and we know which ones have what functionality. Not all are the same, but 85% can run off of similar tests. Is there a way to call a test, dynamically change the URL during runtime from a list of names, then record the result against that somehow?
Thanks