Exemplo n.º 1
0
 public void RegisterCard(GdCard card)
 {
     //Step 1: Navigate to register card page
     _webBrowserUtility
     .NavigateAsync("http://www.greendot.com/greendot/activation/online-activation-init")
     .ContinueWith(
         task =>
     {
         //Step 2:Fill the Card info
         var scriptTxt = File.ReadAllText("Script/Register/step1FillCardInfo.js");
         _webBrowserUtility.ExecuteJavascript(scriptTxt);
     })
     .ContinueWith(
         task =>
     {
     })
     .ContinueWith(
         task =>
     {
     })
     ;
 }
Exemplo n.º 2
0
 public void ActivateCard(GdCard card)
 {
     throw new NotImplementedException();
 }