I use Jenkins to run tests and connect a slave to it.
Before I connected the slave using Java application and when I started build the tests were run visibly - I saw browser windows opening on the slave.
Now I connect the same slave but using SSH and when I start build the tests are run but they run in headless mode so I don't see anything going on the slave (only in processes).
I want to see the process of tests execution as I saw it when my slave was connected using Java.
I use ChromeDriver to run tets.
Any ideas and explanations why this happened when I changed the way of connection?
When slave connected with SSH, browser being launched by Jenkins user (or local system on windows), so you can't see it because you logged in with another account.
When you start the slave with Java Web Start it uses your account so you can see what's happening.