是否可以使用PowerShell自动化Silverlight?
我想控制Silverlight,按下按钮等。
就像使用IExplorer进行自动化一样:
$ie = New-Object -ComObject InternetExplorer.Application
$ie.Navigate("http://www.stackoverflow.com")
$ie.Document.getElementById("ButtonID")|foreach{
$_.Click()
}
请您参考如下方法:
Searching表示white,它支持Silverlight see the Silverlight wiki entry。作为.NET库,应该直接在PowerShell中使用它。 This testing.stackexchange question也可能是一个很好的起点。