Beispiel #1
0
        public void Action_finish()
        {
            screenshot screens = new screenshot();

            FinishButton.Click();
            screens.Takescreenshot9("filename");
        }
Beispiel #2
0
 internal void Finish()
 {
     FinishButton.Click();
     Execute(() => {
         // Wait for the wizard to close properly max 10 seconds
         int i = 0;
         while (wiz.IsActive && i < 100)
         {
             SleepWithDoEvents(100);
             i++;
         }
     });
 }