public static WebAddressBuilder WithDefaults(this WebAddressBuilder @this)
        {
            var faker = @this.Session.Faker();

            @this.WithElectronicAddressString(faker.Internet.Url());
            @this.WithDescription(faker.Lorem.Sentence());

            return(@this);
        }