Exemple #1
0
        private void addAddress()
        {
            this.enterAddressLine1(address.getAddressLine1());

            String addressLine_2 = address.getAddressLine2();

            if (addressLine_2 != null && addressLine_2.Length > 0)
            {
                this.enterAddressLine2(addressLine_2);
            }

            this.enterCity(address.getCity());
            this.selectCountry(address.getCountry());
            this.selectState(address.getState());
            this.enterZip(address.getZip());
            this.enterPhone(address.getPhone());
            //		this.clickAddAddressBtn();
        }