/// <summary>
        /// verify the number of items linked to the passage
        /// </summary>
        /// <param name="expected">expected number of items</param>
        public void VerifyNumberOfItemsLinkedToPassage(int expected)
        {
            Report.Write("Verifying the expected content matches the actual content.");
            int actual;

            if (Driver.GetType() == typeof(DummyDriver))
            {
                actual = expected;
            }
            else
            {
                actual = int.Parse(NumberOfItemsLinkedToPassageLabel.Wait(3).Text);
            }
            Assert.AreEqual(expected, actual, "The expected content: '" + expected + "' does not match the actual content: '" + actual + "'.");
            Report.Write("Verified the expected content: '" + expected + "' does match the actual content: '" + actual + "'.");
        }
 /// <summary>
 /// get the number of items linked to the passage
 /// </summary>
 /// <returns>number of items</returns>
 public string GetNumberOfItemsLinkedToPassage()
 {
     return(NumberOfItemsLinkedToPassageLabel.Wait(3).Text);
 }