role = <hub|remotecontrol|webdriver> (default is no grid, just run an RC/webdriver server). When launching a node for webdriver or remotecontrol, the parameters will be forwarded to the server on the node, so you can use something like -role remotecontrol -trustAllSSLCertificates. In that case, the SeleniumServer will be launch with the trustallSSLCertificates option. # hub config host = (hub & node) <IP | hostname> : usually not needed and determined automatically. For exotic network configuration, network with VPN, specifying the host might be necessary. port = (hub & node) <xxxx> : the port the remote/hub will listen on.Default to 4444. throwOnCapabilityNotPresent = (hub) <true | false> default to true. If true, the hub will reject test requests right away if no proxy is currently registered that can host that capability.Set it to false to have the request queued until a node supporting the capability is added to the grid. newSessionWaitTimeout = (hub) <XXXX>. Default to no timeout ( -1 ) the time in ms after which a new test waiting for a node to become available will time out.When that happens, the test will throw an exception before starting a browser. capabilityMatcher = (hub) a class implementing the CapabilityMatcher interface. Defaults to org.openqa.grid.internal.utils.DefaultCapabilityMatcher. Specify the logic the hub will follow to define if a request can be assigned to a node.Change this class if you want to have the matching process use regular expression insted of exact match for the version of the browser for instance. prioritizer = (hub) a class implementing the Prioritizer interface. Default to null ( no priority = FIFO ).Specify a custom prioritizer if you need the grid to process the tests from the CI, or the IE tests first for instance. servlets = (hub & node) <com.mycompany.MyServlet,com.mycompany.MyServlet2> to register a new servlet on the hub/node. The servlet will accessible under the path /grid/admin/MyServlet /grid/admin/MyServlet2 grid1Yml = (hub) a YML file following grid1 format. hubConfig = (hub) a JSON file following grid2 format. # config that will be inherited by the proxy and used for the node management. cleanupCycle = (node) <XXXX> in ms. How often a proxy will check for timed out thread. nodeTimeout = (node) <XXXX> the timeout in seconds before the hub automatically ends a test that hasn't had aby activity than XX sec.The browser will be released for another test to use.This typically takes care of the client crashes. hub = (node) <http://localhost:4444/grid/register> : the url that will be used to post the registration request. proxy = (node) the class that will be used to represent the node. By default org.openqa.grid.selenium.proxy.SeleniumRemoteProxy ( selenium1 / RC ) org.openqa.grid.selenium.proxy.WebDriverRemoteProxy ( selenium2 / webdriver ) maxSession = (node) max number of tests that can run at the same time on the node, independently of the browser used. registerCycle = (node) how often in ms the node will try to register itself again.Allow to restart the hub without having to restart the nodes. nodePolling = (node) how often the hub checks if the node is still alive.