How do I set agent requirement to 'only interactive agents' Permanently deleted user Created September 13, 2011 18:38 I have a Selenium test suite that I want to run only on agents that are running interactively. What parameter can I use to determine this?
I think env.SESSIONNAME=Console is a good option.
I use properties in conf/buildAgent.properties like
support.maven3=true
support.selenium=true
support.headless=true
and then define an agent requirement on the build configuration like
support.selenium equals true
yes, you can set additional parameters explicitly, but they do not reflect actual system state
This works perfectly, thank you.