Ejemplo n.º 1
0
        private async Task <UserProfile> StoreInUserTable(IBotContext context)
        {
            UserTable userTable = new UserTable();

            return(await userTable.AddUser(
                       context.Activity.ChannelId,
                       context.Activity.From.Id,
                       context.UserData.GetValue <string>(NameKey),
                       context.UserData.GetValue <string>(PhoneKey),
                       context.UserData.GetValue <string>(EmailKey)));
        }
Ejemplo n.º 2
0
        private async Task <UserProfile> StoreInUserTable(IBotContext context)
        {
            UserTable userTable = new UserTable();

            return(await userTable.AddUser(
                       context.Activity.ChannelId,
                       context.Activity.From.Id,
                       string.Empty, //name
                       _isSms?context.Activity.From.Id : string.Empty,
                       context.UserData.GetValue <string>(AliasKey)));
        }
Ejemplo n.º 3
0
        public void AddUsersToList_Firefox()
        {
            bool userExists = false;

            WebDriver.OpenBrowser("Firefox");
            WebDriver.NavigateToUrl("http://www.way2automation.com/angularjs-protractor/webtables/");

            Assert.IsTrue(UserTable.ValidateUserTableExist(), "User table not found");

            UserTable.AddUser(userTestData);

            userExists = UserTable.CheckIfUserIsAddedOnTheList(userTestData);

            Assert.IsTrue(userExists, "User is not on the list");

            if (userExists)
            {
                userRepository.AddUser(userTestData);
            }
        }