예제 #1
0
파일: ElementTest.cs 프로젝트: csokun/Remo
        public void Get_element_by_xpath()
        {
            var el = new Element("//*[@id='page_content_holder']/form/fieldset/p[4]/input");

            Assert.NotNull(el);
            Assert.Equal("By.XPath: //*[@id='page_content_holder']/form/fieldset/p[4]/input", el.Current().ToString());
        }
예제 #2
0
파일: ElementTest.cs 프로젝트: csokun/Remo
 public void Get_element_by_id()
 {
     var el = new Element("id = sokun");
     Assert.NotNull(el.Current());
 }