예제 #1
0
파일: TableLine.cs 프로젝트: jalona/jdi
        protected ReadOnlyCollection <IWebElement> GetLineAction(string lineName)
        {
            if (LineTemplate != null && LineTemplate.GetByLocator().Contains("%s"))
            {
                return(Table.GetWebElement().FindElements(LineTemplate.FillByTemplate(lineName)));
            }
            int index = 0;//GetIndex(Headers(), lineName) + 1; TODO

            return(LineTemplate == null?GetLineAction(index) : Table.GetWebElement().FindElements(LineTemplate.FillByTemplate(index)));
        }
예제 #2
0
파일: TableLine.cs 프로젝트: bomerkus/JDI
        protected IList <IWebElement> GetLineAction(string lineName)
        {
            if (LineTemplate != null && LineTemplate.GetByLocator().Contains("{0}"))
            {
                return(Table.WebElement.FindElements(LineTemplate.FillByTemplate(lineName)));
            }
            var num = Headers.IndexOf(lineName) + 1;

            return(LineTemplate == null
                ? GetLineAction(num)
                : Table.GetWebElement().FindElements(LineTemplate.FillByTemplate(num)));
        }