Ginger.WindowExplorer.HTMLCommon.HTMLTDTreeItem.IWindowExplorerTreeItem C# (CSharp) Method

IWindowExplorerTreeItem() private method

private IWindowExplorerTreeItem ( ) : ObservableList
return ObservableList
        ObservableList<Act> IWindowExplorerTreeItem.GetElementActions()
        {
            ObservableList<Act> list = new ObservableList<Act>();

            list.Add(new ActGenElement()
            {
                Description = "Click " + this.ElementInfo.ElementType + " " + this.ElementInfo.ElementTitle,
                GenElementAction = ActGenElement.eGenElementAction.Click
            });

            list.Add(new ActGenElement()
            {
                Description = "Validate " + this.ElementInfo.ElementType + " Text " + this.ElementInfo.ElementTitle,
                GenElementAction = ActGenElement.eGenElementAction.GetValue
            });

            list.Add(new ActGenElement()
            {
                Description = "Validate " + this.ElementInfo.ElementType  +" is Enabled " + this.ElementInfo.ElementTitle,
                GenElementAction = ActGenElement.eGenElementAction.Enabled,
                //TODO: add REturn value Actual = Enabled=true
            });

            AddGeneralHTMLActions(list);

            return list;
        }
    }