public static API_GuiAutomation mouse_RightClick(this API_GuiAutomation guiAutomation)
 {
     guiAutomation.mouse().rightClick();
     return(guiAutomation);
 }
 public static API_GuiAutomation mouse_DoubleClick(this API_GuiAutomation guiAutomation)
 {
     guiAutomation.mouse().doubleClick();
     return(guiAutomation);
 }