Can I automate Silverlight with PowerShell?

Can I automate Silverlight with PowerShell? I want to control Silverlight, click buttons, etc.

Similar to automation with IExplorer:

$ie = New-Object -ComObject InternetExplorer.Application
$ie.Navigate("http://www.stackoverflow.com")
$ie.Document.getElementById("ButtonID")|foreach{
       $_.Click()
}
+3
source share
2 answers

Finding white surfaces supports Silverlight; see the Silverlight wiki entry . As a .NET library, it must be direct to use with PowerShell. This testing.stackexchange question can also be a good starting point.

+1
source

Silverlight - .NET framework. DLL Silverlight App. Silverlight .NET, WPF.

0

Source: https://habr.com/ru/post/1771440/


All Articles