Is it possible to give Order of test cases execution in test framework or main framework.xaml. Like first test setup,next test case1,2,3,… and test tear down.
To echo @Anil_G’s point, ideally you design test cases in a way that they are not dependent on each other. Why? Because then test set execution can be parallelized across multiple robots and therefore be much faster.
Having said that, if you really want to order test cases, take a look at the Enforcing an execution order section here.