Serenity.WebElementExtensions.IsHiddenInput C# (CSharp) Method

IsHiddenInput() public static method

public static IsHiddenInput ( this element ) : bool
element this
return bool
        public static bool IsHiddenInput(this IWebElement element)
        {
            return element.TagName == "input" && element.GetAttribute("type") == "hidden";
        }