public void ThenISeeCorrectSomeDataDisplays()
        {
            //Get only one row from results and check it has some correct data (Case status is "Open", no "undefined" values.
            Thread.Sleep(10000);
            CaseData caseRow = caseListPage.GetCaseRowByPosition(1);

            caseRow.Should().NotBeNull("Some data displays on Case List table.");
            caseRow.Status.Should().Be("Open");
            caseRow.Number.Should().NotBe("undefined");
            caseRow.Name.Should().NotBe("undefined");
            caseRow.Status.Should().NotBe("undefined");
            caseRow.Type.Should().NotBe("undefined");
            caseRow.OpenDate.Should().NotBe("undefined");
            caseRow.EstimatedDistributionDate.Should().NotBe("undefined");
            caseRow.Balance.Should().NotBe("undefined");
        }