public static void Initialize(TestContext context)
        {
            _people = new List <Person>(new []
            {
                new Person
                {
                    FirstName = "John",
                    LastName  = "Adams"
                },
                new Person
                {
                    FirstName = "Grover",
                    LastName  = "Cleveland"
                }
            });

            _browser = TestStartup.GetBrowserFor("/");

            new WebDriverWait(_browser, TimeSpan.FromSeconds(10)).Until(
                ExpectedConditions.VisibilityOfAllElementsLocatedBy(By.CssSelector("#peopleTable > tbody > tr > td")));
        }