예제 #1
0
 public UserCanvasStack(AutomationElement parent, string target)
 {
     _privacyTools = parent.Descendant("privacyTools");
     _stack = parent.Descendant(target);
     _handwriting = _stack.Descendant("handwriting");
     _text = _stack.Descendant("text");
     _images = _stack.Descendant("images");
 }
예제 #2
0
 public Login(AutomationElement parent)
 {
     _login = parent.Descendant("login");
     _username = _login.Descendant("username");
     _password = _login.Descendant("password");
     _submit = _login.Descendant("submit");
 }