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
    
  
  
    
  | WorkingSet : myWs { | |
| BackgroundColour: RGB(0, 153, 0), | |
| ActiveMaskId: defaultMask, | |
| Selectable: True, | |
| VersionLabel: ' 1', | |
| Children [ | |
| Reference(os, 5, 27) | |
| ] | |
| } | 
  
    
      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 interface IClientCounterPage : IPage | |
| { | |
| IStatic ButtonCounter { get; set; } | |
| IClickable IncrementButton { get; set; } | |
| } | |
| public class ClientCounterPageMap : PageMap<IClientCounterPage> | |
| { | |
| public ClientCounterPageMap() | |
| { | 
  
    
      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
    
  
  
    
  | // Connection is the generic type that applications will use | |
| function Connection(network) { | |
| console.log("Creating Connection"); | |
| // a Connection will take a dependency on a specific kind of network | |
| Connection.prototype.send = network.send; | |
| } | |
| // SampleNetwork is a type representing a specific kind of network connection (BT/UDP/TCP/whatever) | 
  
    
      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
    
  
  
    
  | [TestMethod] | |
| public void SampleApp_AddNote() | |
| { | |
| var desiredCaps = new DesiredCapabilities(); | |
| desiredCaps.SetCapability("device", "Android"); | |
| desiredCaps.SetCapability("browserName", ""); | |
| desiredCaps.SetCapability("version", "4.2"); | |
| desiredCaps.SetCapability("app", "http://appium.s3.amazonaws.com/NotesList.apk"); | |
| desiredCaps.SetCapability("app-package", "com.example.android.notepad"); | |
| desiredCaps.SetCapability("app-activity", ".NotesList"); |