public void ThenTheSelectedPageRecordsShouldBeDisplayedOnDistributionPage()
        {
            object value    = null;
            var    pageInfo = distributionTab.GetPagination();

            pageInfo.TryGetValue("Pagination", out value);
            ((bool)value).Should().BeTrue();
            pageInfo.TryGetValue("ActivePage", out value);
            (value).Should().NotBeNull();
        }