{ | |
//Manual Login API | |
@Test(groups = { "Sanity" }) | |
public void ManualLogin() | |
{ | |
Keywords object=new Keywords(GlobalProperties.POST_URL+ver,new Login_InputGson(ver).LoginRequest()); | |
String LoginJSONOutput = object.apiMethod_POST(); | |
Login_Response login_Response = new Login_Response(); | |
login_Response.response(Keywords.GSON(LoginJSONOutput, Login.class)); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment