コード例 #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();
 }