Created
January 2, 2013 10:40
-
-
Save JakeGinnivan/4433696 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class SomeScreen | |
| { | |
| public string Text {get;set;} // Will look for a UI element called Text and return it's value | |
| public void Ok() { } // Finds a control called ok, and clicks it | |
| // Other conventions | |
| public string Text2 | |
| { | |
| get{return Get<TextBox>("Something").Text; } //overrides convention | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment