コード例 #1
0
 public static Button link(this API_GuiAutomation guiAutomation, string text) //search on the first window
 {
     return(guiAutomation.firstWindow().button(text));
 }
コード例 #2
0
 public static List <Hyperlink> links(this API_GuiAutomation guiAutomation)
 {
     return(guiAutomation.firstWindow().links());
 }
コード例 #3
0
 public static List <Button> buttons(this API_GuiAutomation guiAutomation)
 {
     return(guiAutomation.firstWindow().buttons());
 }