Beispiel #1
0
        public void test01(string name, string url)
        {
            Comment2 comment = new Comment2();

            comment.name = name;
            comment.url  = url;
            fillinCommentForm(comment);
        }
Beispiel #2
0
 private void fillinCommentForm(Comment2 comment)
 {
     webdriver.FindElement(By.Id("author")).SendKeys(comment.name);
 }