Ejemplo n.º 1
0
        public WatinElementCollection GetList(Func <Element, bool> check)
        {
            if (LAWW == null)
            {
                return(new WatinElementCollection(new List <WatinElement>()));
            }

            return(LAWW.GetList(ParentElement, check));
        }
Ejemplo n.º 2
0
        public WatinElement Get(Func <Element, bool> check)
        {
            if (LAWW == null)
            {
                return(new WatinElement(null, LAWW));
            }

            return(LAWW.Get(ParentElement, check));
        }
Ejemplo n.º 3
0
        public WatinElementCollection GetList(string selector)
        {
            if (LAWW == null)
            {
                return(new WatinElementCollection(new List <WatinElement>()));
            }

            return(LAWW.GetList(ParentElement, selector));
        }
Ejemplo n.º 4
0
        public WatinElement Get(string selector)
        {
            if (LAWW == null)
            {
                return(new WatinElement(null, LAWW));
            }

            return(LAWW.Get(ParentElement, selector));
        }