從網(wǎng)上拷下來的代碼如下
懷寧網(wǎng)站建設(shè)公司創(chuàng)新互聯(lián),懷寧網(wǎng)站設(shè)計(jì)制作,有大型網(wǎng)站制作公司豐富經(jīng)驗(yàn)。已為懷寧上千多家提供企業(yè)網(wǎng)站建設(shè)服務(wù)。企業(yè)網(wǎng)站搭建\成都外貿(mào)網(wǎng)站制作要多少錢,請找那個(gè)售后服務(wù)好的懷寧做網(wǎng)站的公司定做!
var desktop = AutomationElement.RootElement; // 先找到根元素,可以認(rèn)為是桌面
var condition = new PropertyCondition(AutomationElement.NameProperty, "計(jì)算器"); // 定義我們的查找條件,名字是test
var window = desktop.FindFirst(TreeScope.Children, condition); // 在桌面的子控件中查找第一個(gè)符合條件的窗體。
var btnCondition =
new PropertyCondition(AutomationElement.AutomationIdProperty, "131");
var button = desktop.FindFirst(TreeScope.Children, btnCondition);
var clickPattern = (InvokePattern)button.GetCurrentPattern(InvokePattern.Pattern);
clickPattern.Invoke();
運(yùn)行報(bào)錯(cuò)“未將對象引用設(shè)置到對象的實(shí)例。"
經(jīng)過多次試驗(yàn),發(fā)現(xiàn)錯(cuò)誤原因:***行改成 var button = desktop.FindFirst(TreeScope.Subtree, btnCondition); 就可以了.
說明TreeScope.Children只代表子節(jié)點(diǎn),不包括子節(jié)點(diǎn)的子節(jié)點(diǎn)