예제 #1
0
        public WatinElementCollection GetList(Func <Element, bool> check)
        {
            if (LAWW == null)
            {
                return(new WatinElementCollection(new List <WatinElement>()));
            }

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

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

            return(LAWW.GetList(ParentElement, selector));
        }
예제 #4
0
        public WatinElement Get(string selector)
        {
            if (LAWW == null)
            {
                return(new WatinElement(null, LAWW));
            }

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