Beispiel #1
0
        public void Enter(
            DisplaySession InSess, string InSelection)
        {
            // tab to entry field as row xxx, col yyy
            var loc = new DisplayLocation(20, 7);

            InSess.TabRightToDisplayLocation(loc);

            InSess.SendKeys(InSelection + Ehllapier.Key.FieldExit);
            InSess.SendKeys(Ehllapier.Key.Enter);
            InSess.Wait();
        }
Beispiel #2
0
        public void Enter(
            DisplaySession InSess, string InUserName, string InPassword)
        {
            // tab to entry field as row xxx, col yyy
            var loc = new DisplayLocation(6, 53);

            InSess.TabRightToDisplayLocation(loc);

            InSess.SendKeys(InUserName + Ehllapier.Key.FieldExit);
            InSess.SendKeys(InPassword + Ehllapier.Key.FieldExit);
            InSess.SendKeys(Ehllapier.Key.Enter);
            InSess.Wait();

            // advance past "display messages" screen.
            DisplayMessagesScreen dpm =
                new DisplayMessagesScreen(InSess.GetPresentationSpace( ));

            if (dpm.IsScreen( ))
            {
                dpm.Enter(InSess);
            }
        }
Beispiel #3
0
 public void Enter(DisplaySession InSess)
 {
     InSess.SendKeys(Ehllapier.Key.Enter);
     InSess.Wait();
 }