AutomationElement child = walker.GetFirstChild(el);
Windowsオートメーションを使ってどのように私は子供の左クリックをシミュレートしますか?オートメーション要素が与えられたらどうすればいいですか?
AutomationElement child = walker.GetFirstChild(el);
System.Windows.Point p = child.GetClickablePoint();
Mouse.Move((int)p.X, (int)p.Y);
Mouse.Click(MouseButton.Left);
リンク::
Mouseクラスにアクセスするにはどうすればよいですか? – Stacker
http://longan.googlecode.com/svn-history/r87/trunk/Dtf/Dtf/Core/Mouse.cs –
これを試してみますが、クリックするだけで問題が発生すると思いますがマウスがそのクリックを認識していないので、要素がウィンドウの上にない可能性があり、クリックがnoになる原因となります。 – Stacker