public static async Task <Authentication[]> LoginRandomManyAsync(this ICremaHost cremaHost, int count)
        {
            var authenticationList = new List <Authentication>(count);

            for (var i = 0; i < count; i++)
            {
                var authentication = await cremaHost.LoginRandomAsync();

                authenticationList.Add(authentication);
            }
            return(authenticationList.ToArray());
        }