public void ThenDocumentResultShouldContains(string caseNo, string debtor)
        {
            System.Threading.Thread.Sleep(1500);

            if (!string.IsNullOrWhiteSpace(caseNo))
            {
                documents.GetRecordsByColumnName("CASE #", caseNo);
            }

            if (!string.IsNullOrWhiteSpace(debtor))
            {
                documents.GetRecordsByColumnName("DEBTOR", debtor);
            }
        }