TestAutomationEssentials.Selenium.ElementsContainer.ElementsContainer C# (CSharp) Méthode

ElementsContainer() protected méthode

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
Résultat System
        protected ElementsContainer(string description)
        {
            if (description == null)
                throw new ArgumentNullException("description");

            Description = description;
        }