I have webdriver tests in different classes with some being parameterized and some non parameterized. I am having issues when running a test suite with both parameterized and non parameterized test . The paramertized test start before the non paramertized finish although I have set the parallel attribute to be false. First, I tried creating different tests in the suite with parameterized and non paramertized tests in different test but that didn't work. Secondly, I created different suite files and linked them . However, this works only when the parameterized suite is started first but not the other way round. I have webdriver tests in different classes wit