Esempio n. 1
0
        public void GivenUserFillsUserActivationDetailsWithForBusinessUser(UIBusinessDetails expectedList)
        {
            _context.BusinessDetails = expectedList;

            Init()
            .SendText("[name='fullname']", expectedList.CompanyName)
            .SendText("[name='website']", expectedList.WebSite)
            .SendText("[name='registrationNumber']", expectedList.RegNumber.ToString())
            .SendText(UISelectSearch, expectedList.Country)
            .ClickOnElement(UISelectSearch)
            .SelectUISearchOption(expectedList.Country)
            .SendText("[name='tradingAddress']", expectedList.TradingAddress);
            CommonComponentSteps.MakeScreenshot();
        }
Esempio n. 2
0
 public Context()
 {
     PersDetails     = new UIUserPersonalDetails();
     BusinessDetails = new UIBusinessDetails();
 }