Hi,
I was wondering if it is possible to execute UI Automation Tests on a Grid Node?
Having the option of running them on a grid node is really useful, as the involve opening windows and sending UI events like mouse clicks and keyboard input and are often rather slow - all of which you don't want to have on your development machine.
While UI Automation Tests work generally fine in ncrunch if they are executed on the same machine, I've not yet been successful with running them on a grid node.
For example, I when using: FlaUI (https://github.com/FlaUI/FlaUI) the call
```csharp
var window = app.GetMainWindow(automation);
```
works fine on my machine, but returns `null` when executed on a grid node.
In the past I've been able to use a combination of creating a remote desktop connection and then using an interactive process using `psexec` to automate UI Tests on a VM in the past when invoking a console test runner.
The process was similiar to what is documented here:
https://pywinauto.readth...t/remote_execution.html
But with ncrunch, I am not launching the process myself using psexec, but the grid node service is, so I am not sure what I could do here.
Is there a way to get UI Automation Tests working on a Grid Node?
I've searched the forum but I didn't find anything related to that.
Thank you!
Take care,
Martin