TestAutomationEssentials.Selenium.ElementsContainer.ElementsContainer C# (CSharp) 메소드

ElementsContainer() 보호된 메소드

Initializes the instance of ElementsContainer with the specified description
is null
protected ElementsContainer ( string description ) : System
description string A description representing the element in the log
리턴 System
        protected ElementsContainer(string description)
        {
            if (description == null)
                throw new ArgumentNullException("description");

            Description = description;
        }