/**
  * The annotated method will be run before the first test method in the current class is invoked,
  * Student logs in, Pes Admin Logs in
  *
  * @throws Exception
  */
 @BeforeClass(groups = {"prerequisite"})
 public void testPesAdminLogIn() throws Exception {
   a.login("pesAdmin");
 }