I\'m trying to use @BeforeTest to get code to ... run once before every test.
This is my code:
public class TestBase { @BeforeTest public voi
Use @BeforeMethod, not @BeforeTest.
The meaning of @BeforeTest is explained in the documentation.