Exemple #1
0
 public AddressFormComponent TypeInAddress1Input(string text)
 {
     Address1Input.Click();
     Address1Input.Clear();
     Address1Input.SendKeys(text);
     return(this);
 }
 private void FillAddressInfoInternal(Data.ClientPurchaseInfo clientInfo)
 {
     CountryDropDown.SelectByText(clientInfo.ShippingInfo.Country);
     FullNameInput.SendKeys(clientInfo.ShippingInfo.FullName);
     Address1Input.SendKeys(clientInfo.ShippingInfo.Address1);
     CityInput.SendKeys(clientInfo.ShippingInfo.City);
     ZipInput.SendKeys(clientInfo.ShippingInfo.Zip);
     PhoneInput.SendKeys(clientInfo.ShippingInfo.Phone);
     ShipToThisAddress.Click();
 }
Exemple #3
0
 public AddressFormComponent ClickAddress1Input()
 {
     Address1Input.Click();
     return(this);
 }