Exemplo n.º 1
0
        public void WhenICallPostUserInfromationUsingDetails(Table table)

        {
            var email = table.Rows[0]["email"];
            var pass  = table.Rows[0]["password"];

            RestAPIHelper.CreateRequestWithBody(email, pass);
        }
Exemplo n.º 2
0
 public void WhenICallGetUserInfromationUsingUser(string userId, string password)
 {
     RestAPIHelper.CreateRequestWithBody(userId, password);
 }