Skip to content

Instantly share code, notes, and snippets.

@kkashyap1707
Created June 27, 2016 10:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kkashyap1707/d2ec20c30a13f883bb58e59551775cdb to your computer and use it in GitHub Desktop.
Save kkashyap1707/d2ec20c30a13f883bb58e59551775cdb to your computer and use it in GitHub Desktop.
{
//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