Exemple #1
0
        /// <summary>
        /// Performs the playback of actions in this module.
        /// </summary>
        /// <remarks>You should not call this method directly, instead pass the module
        /// instance to the <see cref="TestModuleRunner.Run(ITestModule)"/> method
        /// that will in turn invoke this method.</remarks>
        void ITestModule.Run()
        {
            Mouse.DefaultMoveTime        = 300;
            Keyboard.DefaultKeyPressTime = 100;
            Delay.SpeedFactor            = 1.0;
            repo = new RxDatabaseRepository();
            var btn = repo.RxMainFrame.BtnAddPerson;

            btn.Click();
        }
Exemple #2
0
 /// <summary>
 /// Constructs a new instance.
 /// </summary>
 public SelectGenderName()
 {
     // Do not delete - a parameterless constructor is required!
     myRepo = new RxDatabaseRepository();
 }
Exemple #3
0
 /// <summary>
 /// Constructs a new instance.
 /// </summary>
 public Department()
 {
     // Do not delete - a parameterless constructor is required!
     repo = new RxDatabaseRepository();
 }
 /// <summary>
 /// Constructs a new instance.
 /// </summary>
 public InsertPerson()
 {
     // Do not delete - a parameterless constructor is required!
     myRepo = new RxDatabaseRepository();
 }