Example #1
0
 /// <summary>
 /// checks for current clicker type, depending on this setting up browser properties
 /// </summary>
 public void VerifyClickerInput()
 {
     if (!ClickerInput) //if input clicker
     {
         _controlsService.ShowLessBrowser();
     }
     else if (ClickerInput && !Paused && !Stopped) //if JavaScript clicker and not paused and stopped or working
     {
         _controlsService.ShowMoreBrowserRunning();
     }
     else if (ClickerInput && (Paused || Stopped || PleaseWaitVisible)) //if JavaScript clicker and paused or stopped
     {
         _controlsService.ShowMoreBrowserPaused();
     }
 }