public static CMElementCollectionUI getElementCollection()
        {
            CMElementCollectionUI customers =
                new CMElementCollectionUI(SessionObjects.getTestObject.TestCasesStruct.Elements);

            return(customers);
        }
        /// <summary>
        /// Remove the element from the list.
        /// </summary>
        public void Remove()
        {
            CMElementCollectionUI owner = Owner as CMElementCollectionUI;

            if (owner != null)
            {
                owner.Remove(this);
            }
        }