コード例 #1
0
 public void ClickSaveButton()
 {
     FlaUI.Core.AutomationElements.Button saveButton = this.MainWindowMap.SaveButton();
     saveButton.Focus();
     saveButton.Click();
     //this.LocalApplication.WaitWhileBusy(TimeSpan.FromSeconds(5));
 }
コード例 #2
0
 public void ClickAddButton()
 {
     FlaUI.Core.AutomationElements.Button addButton = this.MainWindowMap.AddButton();
     addButton.Focus();
     addButton.Click();
 }
コード例 #3
0
 public bool SaveButtonEnabled()
 {
     FlaUI.Core.AutomationElements.Button saveButton = this.MainWindowMap.SaveButton();
     return(saveButton.IsEnabled);
 }
コード例 #4
0
 public bool AddButtonEnabled()
 {
     FlaUI.Core.AutomationElements.Button addButton = this.MainWindowMap.AddButton();
     return(addButton.IsEnabled);
 }