public void WhenICompleteTheSignUpForm(Table table)
        {
            dynamic accountInfo = table.CreateDynamicInstance();

            ScenarioContext.Current.Add("username", (string)accountInfo.UserName);

            _signupPage.RegisterAccount((string)accountInfo.UserName, (string)accountInfo.Email, (string)accountInfo.Password);
        }