public new void SetupTest()
 {
     _homePage = new HomePage(AutomatedBrowser.WebDriverInstance);
     _homeData = new HomeData();
     _resturantSelectionData  = new ResturantSelectionData();
     _resturantSelectionPage  = new ResturantSelectionPage(AutomatedBrowser.WebDriverInstance);
     _orderCreationPage       = new OrderCreationPage(AutomatedBrowser.WebDriverInstance);
     _orderCreationData       = new OrderCreationData();
     _paymentDetailsData      = new PaymentDetailsData();
     _paymentDetailsPage      = new PaymentDetailsPage(AutomatedBrowser.WebDriverInstance);
     _paymentConfirmationPage = new PaymentConfirmationPage(AutomatedBrowser.WebDriverInstance);
     _orderVerificationPage   = new OrderVerificationPage(AutomatedBrowser.WebDriverInstance);
 }
Beispiel #2
0
 public PaymentDetailsResponse MakePaymentDetailsRequest(PaymentDetailsData data)
 {
     return(_client.CreatePaymentDetails(_paymentDetailsUrl, _userId, _userKey, _applicationId, Timeout, data));
 }