Created
June 27, 2016 10:00
-
-
Save kkashyap1707/d2ec20c30a13f883bb58e59551775cdb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
//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